私の仕事は
ユーザーのプライベート ビデオを検索します。後で選択したビデオのリンクが管理者の編集者に貼り付けられ、ユーザーがページを開いたときにビデオを見ることができます。
動画の埋め込みコードを検索して取得し、それをエディターに貼り付けます。後でエンド ユーザーがそのページを開いてビデオを表示します。
ユーザーが動画リンクをコピーして、プラットフォーム外の別のページに貼り付けていることを確認してください。彼らはビデオを見るべきではありません。
jQuery.ajax({
url: 'https://api.vimeo.com/oauth/access_token',
type: "POST",
dataType: 'json',
beforeSend: function(xhr){
xhr.setRequestHeader('Authorization', 'bearer [token]');
xhr.setRequestHeader('consumer_key', '[token]');
xhr.setRequestHeader('consumer_secret', '[token]');
xhr.setRequestHeader('Accept', 'application/vnd.vimeo.*+json;version=3.0');
xhr.setRequestHeader('client_id', '[token]');
},
success:function(data){
alert(data);
},
error: function (xhr, ajaxOptions, thrownError){
alert(xhr.status);
alert(ajaxOptions);
alert(thrownError);
}
});
上記のタスクを実行するための段階的な手順が何であるかわかりません。