i have several questions...
- Does yahoo and microsoft api support oAuth 2.0?
- If yes then what are the main security measures those should be taken care of while shifting from oAuth 1.0 to oAuth 2.0.
- Google API supports oAuth 2.0. But they have still marked it as an experimental. Is it good to start shifting even though it is experimental?
I see while registering an application on google (for oAuth 2.0), they ask for callback url. If a single application uses a condition dependent callback url such as -
if($myVar == NULL) $callbackUrl = 'http://www.mydomain.com/test.php?m=f¶ms=null' else $callbackUrl = 'http://www.mydomain.com/test.php?m=x¶ms=1'
How can i implement above when the callback url is already specified? The above conditional mainly handles fallback model of an application or if browser supports java then java based model of an application. Kindly suggest
- May i know how many of email providing websites and social networks supports oAuth 2.0?