I was looking for using JSONP Flickr OAuth. Let me know if it is supported.
There are only 2 supported methods; you cannot use OAuth for the entire login process using JSONP.
But, even if it is deprecated, the old API still exists, you can use and support JSONP: the obsolete flickr API .
Ok yes: http://www.flickr.com/services/api/explore/flickr.auth.oauth.getAccessToken
JSONP is JSON with an addition, which means wrapped in a function. Flicker oauth looks like this:
jsonFlickrApi({ "auth": { "access_token": { "oauth_token": "", "oauth_token_secret": "" } }, "stat": "ok" })
Edit (since I was slowed down):
This is the correct use of the flickr oauth API: http://www.flickr.com/services/api/auth.oauth.html is all included in signing and accessing the token and how to get this token from the request token. If someone is serious about implementing the oauth process, what will you get, since JSONP is the snippet I posted above. You can test all of this from this link http://www.flickr.com/services/api/explore/flickr.auth.oauth.getAccessToken