Hi
I’m trying to upload a video to Youtube using the “Make an OAuth 2.0 request” module.
I’ve configured everything in Google Cloud Console and make the HTTP OAuth v2 request like that :
As a result, I’m able to get my scope validated, so it looks like the Google authentication is ok :
Now I’m using this connection to make the Youtube Upload API call like that :
At the end, I’ve got the following error returned by the “” module :
“data”: “{\n "error": {\n "code": 401,\n "message": "Unauthorized",\n "errors": [\n {\n "message": "Unauthorized",\n "domain": "youtube.header",\n "reason": "youtubeSignupRequired",\n "location": "Authorization",\n "locationType": "header"\n }\n ]\n }\n}\n”
Any idea ?
Thanks