0

I have successfully implemented the whole TikTok authentication process with the basic scope: basic.user.info.

However I can't add an additional scope (video.list), every time I go to the authorization page, TikTok returns an error saying that my scope is not valid.

I made sure I had access to this scope and my application is in production . I have separated my scopes with a comma as explained in the documentation

A comma separated (,) string of authorization scope(s).

My URL currently looks like this:

https://www.tiktok.com/auth/authorize?client_key=my_key&response_type=code&redirect_uri=my_url&scope=user.info.basic%2Cvideo.list&state=my_state

Any help is appreciated

Thank you for reading

thomasA
  • 257
  • 1
  • 4
  • 11

1 Answers1

1

Thom! You need to add additional scopes for your app from the developers dashboard: https://developers.tiktok.com/app/

Additioanl scopes

Boar
  • 46
  • 2