Issue when uploading video on Vimeo (through my iOS app)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am facing issue when uploading video from iOS application on behalf of other users.
Steps are below:
- In Vimeo, I logged in with my company account and created Vimeo app.
- After that I sent a request to Vimeo for Upload scope.
- Then my app approved for Upload scope, and I have client_id, secret_id, redirect_ui, etc..
MyApps: https://developer.vimeo.com/apps
Then, I was following OAuth flow, for that I am opening following url in mobile app browser:
https://api.vimeo.com/oauth/authorize?response_type=code&client_id=XXX&scope=upload&redirect_uri=XXX&state=XXX
but I am getting following error:
An error has occurred. You won't be able to connect to Vimeo until it
is fixed by the developer.
Dear app owner, we are unable to generate access tokens using one or more of the scopes you provided.
If anyone faced this issue, let me know the solution. Also let me know if any other detail needed to rectify this issue.
ios vimeo vimeo-upload
add a comment |
I am facing issue when uploading video from iOS application on behalf of other users.
Steps are below:
- In Vimeo, I logged in with my company account and created Vimeo app.
- After that I sent a request to Vimeo for Upload scope.
- Then my app approved for Upload scope, and I have client_id, secret_id, redirect_ui, etc..
MyApps: https://developer.vimeo.com/apps
Then, I was following OAuth flow, for that I am opening following url in mobile app browser:
https://api.vimeo.com/oauth/authorize?response_type=code&client_id=XXX&scope=upload&redirect_uri=XXX&state=XXX
but I am getting following error:
An error has occurred. You won't be able to connect to Vimeo until it
is fixed by the developer.
Dear app owner, we are unable to generate access tokens using one or more of the scopes you provided.
If anyone faced this issue, let me know the solution. Also let me know if any other detail needed to rectify this issue.
ios vimeo vimeo-upload
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57
add a comment |
I am facing issue when uploading video from iOS application on behalf of other users.
Steps are below:
- In Vimeo, I logged in with my company account and created Vimeo app.
- After that I sent a request to Vimeo for Upload scope.
- Then my app approved for Upload scope, and I have client_id, secret_id, redirect_ui, etc..
MyApps: https://developer.vimeo.com/apps
Then, I was following OAuth flow, for that I am opening following url in mobile app browser:
https://api.vimeo.com/oauth/authorize?response_type=code&client_id=XXX&scope=upload&redirect_uri=XXX&state=XXX
but I am getting following error:
An error has occurred. You won't be able to connect to Vimeo until it
is fixed by the developer.
Dear app owner, we are unable to generate access tokens using one or more of the scopes you provided.
If anyone faced this issue, let me know the solution. Also let me know if any other detail needed to rectify this issue.
ios vimeo vimeo-upload
I am facing issue when uploading video from iOS application on behalf of other users.
Steps are below:
- In Vimeo, I logged in with my company account and created Vimeo app.
- After that I sent a request to Vimeo for Upload scope.
- Then my app approved for Upload scope, and I have client_id, secret_id, redirect_ui, etc..
MyApps: https://developer.vimeo.com/apps
Then, I was following OAuth flow, for that I am opening following url in mobile app browser:
https://api.vimeo.com/oauth/authorize?response_type=code&client_id=XXX&scope=upload&redirect_uri=XXX&state=XXX
but I am getting following error:
An error has occurred. You won't be able to connect to Vimeo until it
is fixed by the developer.
Dear app owner, we are unable to generate access tokens using one or more of the scopes you provided.
If anyone faced this issue, let me know the solution. Also let me know if any other detail needed to rectify this issue.
ios vimeo vimeo-upload
ios vimeo vimeo-upload
edited Nov 22 '18 at 11:18
Narendar Singh Saini
asked Nov 22 '18 at 10:24
Narendar Singh SainiNarendar Singh Saini
2,5221815
2,5221815
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57
add a comment |
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57
add a comment |
1 Answer
1
active
oldest
votes
As per the documentation the private scope is:
Required for any scope other than public.
It also says the following regarding the response_type parameter:
The OAuth response type. Use authorization_code for the authorization code grant.
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428794%2fissue-when-uploading-video-on-vimeo-through-my-ios-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As per the documentation the private scope is:
Required for any scope other than public.
It also says the following regarding the response_type parameter:
The OAuth response type. Use authorization_code for the authorization code grant.
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
add a comment |
As per the documentation the private scope is:
Required for any scope other than public.
It also says the following regarding the response_type parameter:
The OAuth response type. Use authorization_code for the authorization code grant.
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
add a comment |
As per the documentation the private scope is:
Required for any scope other than public.
It also says the following regarding the response_type parameter:
The OAuth response type. Use authorization_code for the authorization code grant.
As per the documentation the private scope is:
Required for any scope other than public.
It also says the following regarding the response_type parameter:
The OAuth response type. Use authorization_code for the authorization code grant.
answered Nov 29 '18 at 12:50
Dennis RuiterDennis Ruiter
18528
18528
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
add a comment |
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
I used this but not worked: api.vimeo.com/oauth/…
– Narendar Singh Saini
Dec 6 '18 at 11:29
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
It's a space seperated list, correct. But it's also a URL, use %20 instead of space so scope=private%20upload
– Dennis Ruiter
Dec 7 '18 at 21:55
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
Hi Dennis, I am using scope=private%20upload, didn't you notice that in the URL I mentioned above? Please check it and let me know what's wrong here.
– Narendar Singh Saini
Dec 8 '18 at 5:33
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428794%2fissue-when-uploading-video-on-vimeo-through-my-ios-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
have you tried to set response_type as "token" instead of "code"? Because as per document you may have to use token if you are plaining to use token in Browser. Please refer developer.vimeo.com/api/….
– Natarajan
Nov 28 '18 at 12:09
token also doesn't work
– Narendar Singh Saini
Nov 29 '18 at 8:57