The new set of Google APIs could be used in Android with the Client Library and can be authenticated using
- OAuth1.0
- OAuth2.0
- Client Authentication (android).
Can someone show me an example of Client Authentication using GoogleAccountManager
class?
I can't get one working.
Also when I use OAuth2.0 and use a redirect URL like buzz-sample:///
and add an intent filter to the Manifest like
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="buzz-sample" />
</intent-filter>
It throws an error in the browser invalid-request: Invalid parameter value for redirect_uri: Missing authority: buzz-sample:///
Error 400
Any help would be appreciated.