Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to OAuth 2.0 login using Chrome custom tabs (Fitbit API)

Fitbit API doesn't support webview anymore.

So, I studied chrome custom tabs and applied in my app.

But after login, when I pressed this pink button(allow button), nothing happened.(Image below)

Fitbit API Login Image

How can I receive access token and store it in app?

Please help me.

Thanks.

like image 218
Cloud Avatar asked Nov 18 '15 05:11

Cloud


1 Answers

When authorizing agains the Fitbit API, you need to provide a redirect_uri, which is where the user will be taken after logging in. You need to provide a uri that will take the user back to your application.

To achieve that, create an intent filter and add a data tag with a custom scheme, such as myapplication://logincallback to the Activity you want to handle the login.

The intent filter will look something like this:

<intent-filter . . . >
    <data android:scheme="myapplication" android:host="logincallback" />
    . . .
</intent-filter>

Now, set the redirect_uri as mypplication://logincallback to the authorization step of the flow, and when the user clicks the pink button, it should open the Activity you added the intent filter.

You will be able to retrieve the parameters inside your activity by calling getData on the Intent.

like image 73
andreban Avatar answered Nov 06 '22 08:11

andreban