Oauth Android demo

I am creating an Android app that integrates zoom video. I created a ‘meeting sdk’ app in the zoom marketplace.

I downloaded the android sdk 5.13.5.11583

I see the credentials for the app are for oauth but when when I look at the android demos in the 5.13.5.11583 sdk zip file it is using JWT credentials. Should I be using JWT instead? I cannot see any android demos that use oauth.

I worked it out. I replaced ‘initParams.jwtToken = SDK_JWTTOKEN’

with
initParams.appKey = SDK_KEY;
initParams.appSecret = SDK_SECRET;

and now it works.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.