Hello everyone, I am a new user of Make. I am seeking advice on how to achieve the goal of uploading videos from Canva to Pinterest. Currently, I am encountering an issue with using the Pinterest API. How can I resolve this?
- Pinterest API Access Token:
- You need to obtain an access token for the Pinterest API to upload videos.
- You have the application ID and application secret, but you’re facing challenges in constructing the authorization URL.
- Redirect URI Restriction:
- Your redirect URI cannot contain parameters, complicating the typical OAuth flow where the authorization code is returned as a URL parameter.
- You need to handle the authorization code exchange on the server side to obtain the access token.
- Authorization URL Construction:
- You need to build an authorization URL without extra parameters and ensure the redirect URI matches the one configured in the Pinterest Developer Console.
- Server-Side Handling:
- Since the redirect URI cannot contain parameters, the handling and exchange of the authorization code must be done on the server side.