Android Question login to GoogleDrive problem

peter93

Member
Licensed User
Longtime User
I try to connect to googleDrive and I get this message:
upload_2017-4-14_19-12-21.png
I use the libGoogleDrive library V1.0 and webViewXtended and WebViewExtras.
I have the libGoogleDrive.jar file in the additional library.
Thanks for your help.
 
Last edited:

peter93

Member
Licensed User
Longtime User
Yes, I think it is this.
I control bad network protocol problems
but I think that a change in the libGoogleDrive library will be necessary ?
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
but I think that a change in the libGoogleDrive library will be necessary ?
I don´t think it will help. The lib rely on using the http-googledrive api.
there is no way to get a OAuth Token using the http-api anymore. You need to setup a custom scheme like described in the Thread i posted.

I can´t answer this for GoogleDrive 100%.

But talking about my two Dropbox-Libraries i can say:
- Using the HTTP Version of my Dropbox-Lib (which is based on okHTTP-Calls (like the googledrivelib does) you are not able anymore to get an OAUth token. Here the same applies like on the googledriblib.

- Using my JAVA-Version of the Dropbox-Library you ARE able as the OAuth is not realised with a webview. The java-lib is using either the installed Dropbox-App OR the Device-Browser to Authenticate a User and to get an Access-Token for the users Dropbox.
 
Upvote 0
Top