How can I have private videos (on a private Pro Vimeo profile) viewable and DOWNLOADABLE on my website?
(Using Wordpress plugins and Vimeo API)
I have had a bespoke Wordpress plugin built and am struggling now with one capability.
I have paid for a Pro Vimeo account so that I have better privacy options, but I need to have the videos viewable and most importantly DOWNLOADABLE on my client's website.
I am sure this was possible before, but after three software developers have tried and mostly not managed to complete my job briefs, I am left pretty desperately on how to finish this key functionality.
When I try to download the videos straight from the website, it won't let me and takes me to a blank page. The only way to fix it is to make my Vimeo profile and videos public on Vimeo however, it is vital that they are private on there.
I would be SO GRATEFUL if someone could help me.
wordpress api plugins vimeo
add a comment |
(Using Wordpress plugins and Vimeo API)
I have had a bespoke Wordpress plugin built and am struggling now with one capability.
I have paid for a Pro Vimeo account so that I have better privacy options, but I need to have the videos viewable and most importantly DOWNLOADABLE on my client's website.
I am sure this was possible before, but after three software developers have tried and mostly not managed to complete my job briefs, I am left pretty desperately on how to finish this key functionality.
When I try to download the videos straight from the website, it won't let me and takes me to a blank page. The only way to fix it is to make my Vimeo profile and videos public on Vimeo however, it is vital that they are private on there.
I would be SO GRATEFUL if someone could help me.
wordpress api plugins vimeo
add a comment |
(Using Wordpress plugins and Vimeo API)
I have had a bespoke Wordpress plugin built and am struggling now with one capability.
I have paid for a Pro Vimeo account so that I have better privacy options, but I need to have the videos viewable and most importantly DOWNLOADABLE on my client's website.
I am sure this was possible before, but after three software developers have tried and mostly not managed to complete my job briefs, I am left pretty desperately on how to finish this key functionality.
When I try to download the videos straight from the website, it won't let me and takes me to a blank page. The only way to fix it is to make my Vimeo profile and videos public on Vimeo however, it is vital that they are private on there.
I would be SO GRATEFUL if someone could help me.
wordpress api plugins vimeo
(Using Wordpress plugins and Vimeo API)
I have had a bespoke Wordpress plugin built and am struggling now with one capability.
I have paid for a Pro Vimeo account so that I have better privacy options, but I need to have the videos viewable and most importantly DOWNLOADABLE on my client's website.
I am sure this was possible before, but after three software developers have tried and mostly not managed to complete my job briefs, I am left pretty desperately on how to finish this key functionality.
When I try to download the videos straight from the website, it won't let me and takes me to a blank page. The only way to fix it is to make my Vimeo profile and videos public on Vimeo however, it is vital that they are private on there.
I would be SO GRATEFUL if someone could help me.
wordpress api plugins vimeo
wordpress api plugins vimeo
asked Dec 31 '18 at 15:12
ThanksAlreadyThanksAlready
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to use the API to retrieve file download links for your videos.
Make an authenticated request to https://api.vimeo.com/videos/[video_id] using a token with the video_files
scope. In the response is an array "download"
that will contain video file metadata, including download links, and the expiration time of those links.
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
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%2f53988884%2fhow-can-i-have-private-videos-on-a-private-pro-vimeo-profile-viewable-and-down%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
You need to use the API to retrieve file download links for your videos.
Make an authenticated request to https://api.vimeo.com/videos/[video_id] using a token with the video_files
scope. In the response is an array "download"
that will contain video file metadata, including download links, and the expiration time of those links.
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
add a comment |
You need to use the API to retrieve file download links for your videos.
Make an authenticated request to https://api.vimeo.com/videos/[video_id] using a token with the video_files
scope. In the response is an array "download"
that will contain video file metadata, including download links, and the expiration time of those links.
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
add a comment |
You need to use the API to retrieve file download links for your videos.
Make an authenticated request to https://api.vimeo.com/videos/[video_id] using a token with the video_files
scope. In the response is an array "download"
that will contain video file metadata, including download links, and the expiration time of those links.
You need to use the API to retrieve file download links for your videos.
Make an authenticated request to https://api.vimeo.com/videos/[video_id] using a token with the video_files
scope. In the response is an array "download"
that will contain video file metadata, including download links, and the expiration time of those links.
answered Jan 2 at 15:42
Tommy PennerTommy Penner
1,0361510
1,0361510
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
add a comment |
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
Ok so I did with another download script but unfortunately, it would not work either. So I have done a lot of blog reading and I got results that Vimeo won't allow an audience to download private videos with ANY script. Vimeo has blocked the API method for Private videos that's why it's not working. Is there any chance of this changing? I have upgraded to a PRO Vimeo account for the supposed advanced privacy features, yee this has been a waste of time and money...
– ThanksAlready
Jan 3 at 10:30
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
We are doing the same as you have written about @tommypenner - we also got the id & its format as well. But it would not work.... Please help!
– ThanksAlready
Jan 3 at 10:34
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
I have made a separate question which may be clearer to readers, please check it out here stackoverflow.com/questions/54020754/…
– ThanksAlready
Jan 3 at 10:46
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%2f53988884%2fhow-can-i-have-private-videos-on-a-private-pro-vimeo-profile-viewable-and-down%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