Vimeo Advanced API - How to connect via Oauth?

本秂侑毒 提交于 2020-01-07 06:33:26

问题


I'm new to oauth and I'm trying to connect to the Vimeo Advanced API. I have a couple questions for you, and I hope they are pretty easy to resolve.

First, will connecting using oauth cause a prompt or can it be silent? I'm trying to get info from private videos and vimeo is telling me I need oauth authentication to do so.

Second, I have looked at...

http://vimeo.com/api/docs/oauth

And...

http://vimeo.com/api/docs/authentication

I have created the base string based on the instructions in the oauth guide, but I don't know what to do now that I have it.

Here's the code I have so far (variable data is left out for security purposes):

$http_request_string = "method=" . $oauth_method . "&oauth_consumer_key=" . $oauth_key . "&oauth_nonce=" . $oauth_nonce . "&oauth_signature_method=" . $oauth_signature_method . "&oauth_timestamp=" . $oauth_timestamp . "&oauth_version=" . $oauth_version . "&user_id=" . $oauth_user_id;
$base_string = $oauth_method . "&" . urlencode($oauth_method) . "&" . urlencode($http_request_string);
$key = $oauth_key . "&" . $oauth_secret;

Could someone please provide me with advice or a guide by which I know how to connect via PHP? Or let me know if it's not possible to do so without a prompt?

Thanks a bunch, like always :)


回答1:


You should use an OAuth client library, it would do all of this for you.

If you really can't:

You need to sign the base_string with the key:

$signature = hash_hmac('SHA1', $base_string, $key, true);

Then you have to send an Authorization header with your request:

Authorization: OAuth realm="",
oauth_callback="oob",
oauth_consumer_key="YourConsumerKey",
oauth_signature_method="HMAC-SHA1",
oauth_timestamp="1234567890",
oauth_nonce="abcdefghijk",
oauth_version="1.0",
oauth_signature="YourSignature" 


来源:https://stackoverflow.com/questions/7220295/vimeo-advanced-api-how-to-connect-via-oauth

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!