google-apis icon indicating copy to clipboard operation
google-apis copied to clipboard

Google API bindings for Xamarin.

Results 3 google-apis issues
Sort by recently updated
recently updated
newest added

My SignIn method is as follows: ``` public void SignIn() { Debug.WriteLine("In SignIn"); if (GdAuthenticator == null) { (App.GdClientId, App.GdRedirectUrl, App.GdClientSecret) = App.SetIDs4GoogleDrive(); Debug.WriteLine($"GdRedirectUrl: {App.GdRedirectUrl}"); GdAuthenticator = new OAuth2Authenticator( App.GdClientId,...

How i can refresh the token when expired? I want to show the login UI only the first time the user access.

![untitled](https://cloud.githubusercontent.com/assets/6663030/2916280/76834e4c-d6b9-11e3-9df6-b36e1c5f304e.png) my solution if is ok: ``` var attributes = property.GetCustomAttributes(); if (attributes != null && attributes.Count() > 0) { var attribute = attributes.ElementAt (0); string name = attribute.Name ??...