So I want to build an application in Objective C for a site that I use. Here is an example of their login API:
Verify Credentials
Allows authenticating user to check username/password.
URL:
http://myanimelist.net/api/account/verify_credentials.xml
Formats:
xml
HTTP Method(s):
GET
Requires Authentication:
true
Response:
Success: 200 status code, XML data for user.
Failure: 204 status code (no content).
Example Response:
<?xml version="1.0" encoding="utf-8"?>
<user>
<id>1</id>
<username>Xinil</username>
</user>
Usage Examples:
CURL:
curl -u user:password http://myanimelist.net/api/account/verify_credentials.xml
` More API Here. If anyone can point me into the right apple documentation to use MyAnimeList's API it would be greatly appreciated.