I am new to Vimeo's api, i am looking for a way to make unauthenticated requests. I find out that i will need to generate unauthenticated access token, but i don't see any option to do that in the Vimeo's apps console. Can anybody help?
The auth header is no longer made available through the apps page on the Vimeo Developer site. Instead, you'll need to build the auth header yourself with the token encoded in base64 like so:
'Authorization: basic ' + base64(client_id + ':' + client_secret)
Where client_id
and client_secret
can be found on your apps page. The final header you should use will look like this:
Authorization: basic xxxxxxxxxxxxxxxxxxxxxxxxx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With