Hi,
I have iOS calendar app and I want to allow users to generate zoom meeting link for calendar events. Meeting itself will happen in zoom app.
So far I created app at marketplace.zoom.us. From there I get cliend id and client secret.
In iOS application I use this url /oauth/authorize to authenticate user and I get access_token. With that token I am able to create meeting via /v2/users/me/meetings api.
All this works but only if in iOS app I sign in to same account which is app owner and with development client id and client secret. With production client id and secret I get error “invalid redirect uri” but I guess it’s due to fact app is not published.
So now couple of questions:
- Is this correct approach?
- Is it necessary to publish app on zoom marketplace? I don’t need/want that.
- How to make it work for all users?
Thanks