The username or password typed are wrong.
You need to insert username and password
There is something wrong with your username or email...
There is something wrong with the data you have typed
Email already taken.
Username already taken.
Insert a valid email address.
You need to insert email and message
You need to insert name and description app
You need to insert username, password & email.
Email sent!
You just sent a ThankUmbrella!
Congrats, app created!
App edited correctly!
Some problem on updating your email. Try again.
You must accept our TOS for creating an app.
You must insert a name for this app.
You must describe this app.
We just sent you an email with all the necessary information to use this service!
Great! You will receive an email upon launch.
Some problem on saving your data. Try again.
Some problem on creating the contract of this application, try again.
The data sent with this form seems corrupted, invalid, or manipulated.
Congrats, contract created. You can create an application with this contract.
General problem on creating your contract, try again or contact us.
You have to choose a plan before creating an application.
The basic elements of Metwit API Structure are Objects and Resources.
An Object is the atomic element used in metwit API. Every field contained into an Object has 3 parameters:
As you can see here:
| NAME | |||
id |
guaranteed | string | unique identifier for the User object |
nickname |
guaranteed | string | the display name for the user |
metags_count |
guaranteed | number | the number of metags this user has sentt |
The ones used in Metwit API are: User, Metag.
A Resource is a collection of Object.
Metwit API can perform REST Actions over resources. Like the one down here:
{
"meta": {
"limit": 20,
"next": null,
"offset": 0,
"previous": null,
"total_count": 1
},
"objects": [
{
"geo": {
"coordinates": [
8.0,
45.0
],
"type": "Point"
},
"icon": "http://api.metwit.me/v2/icons/sunny",
"id": "717929",
"replies_count": 0,
"resource_uri": "/v2/metags/717929/",
"thanks_count": 0,
"timestamp": "2012-11-27T08:22:20.711984",
"user": {
"followers_count": 0,
"following_count": 0,
"has_facebook": false,
"has_twitter": false,
"id": "6865",
"is_followed": false,
"metags_count": 21,
"nickname": "test1",
"resource_uri": "/v2/users/6865/",
"todays_metags_count": 21
},
"weather": {
"status": "clear"
},
"weight": 7189.823675
}
]
}
Get the list of metags
Here you go with the available resources in Metwit API are