Here's a little JavaScript Library and Testing Environment for making OAuth Calls to Fire Eagle.
To get started you will need to:
sha1.js and oauth.js
from
code.google.com
OAuthExt.js
and fe.js from us.
<script> tags.
var fe = new FireEagle(consumerToken,
consumerSecret) and have fun. For now, check out
the methods in the fe.js class for more
details.
Request Token URL
OAuth Step 1.
See URL
User Auth URL
OAuth Step 2. Take the token from step one and authorize the
user.
oauth_token:
See URL
Access URL
OAuth Step 3. Take the token and secret from step one and
get the access token and secret. You will need to use these
for the API calls, so you will want to store them
somewhere.
oauth_token:
oauth_token_secret:
See URL
User-specific Requests
Use the token and secret
returned from step three (that you saved somewhere) to make the
API calls.