I'm using the Vimeo API to get access to end-user's Vimeo accounts. Following their API docs they use OAuth2. After the end user accepts the access, they get sent to the redirect URI along with an auth code as a URL parameter.
I have set the redirect URI as the end point URL of my API on Xano. However, it generates this response: {'code':'ERROR_CODE_NOT_FOUND','message':'Unable to locate request.'}
If I use Postman, the API runs as expected. However, simply pasting the response URL with parameters into a browser or Vimeo itself redirecting there results in the above error and no entry in the history.
I assumed this is due to the POST verb not being present. So, I used the 'Get All Input (Webhook)' as described in the docs; however, that is the same error.
Not sure where/what I'm doing wrong at this point.