gpt4 book ai didi

iphone - magento REST API 在 iPhone 中无法访问

转载 作者:行者123 更新时间:2023-12-03 21:15:34 25 4
gpt4 key购买 nike

当我尝试使用 iPhone 访问 Rest API 时,我在 URL 中传递了以下参数,并使用了 POSTGET 方法,但显示 访问被拒绝.

oauth_version="1.0", 
oauth_signature_method="HMAC-SHA1",
oauth_nonce="B0dlzkfMWCAn0TJ",
oauth_timestamp="1366280813",
oauth_consumer_key="klkjylsiozbv6vfdsqtuheqo3kmqqzv2",
oauth_token="t9pefrwylmg7webyepsqepotlhzbytkp",
oauth_signature="NeOwbCLUPbIyF9ErnHoFQOl9%2Bwo%3D"

我使用过适用于 Firefox 和 Chrome 的 REST 客户端插件,REST API 使用 REST 客户端插件可以很好地工作,但无法在 iPhone 中访问。

我正在为 oauth_timestamp、oauth_signature 和 oauth_nonce 生成随机值,然后 REST API 也显示访问被拒绝

请提供建议。

最佳答案

//这里final_sign是通过以下过程生成的签名。

$nonce = substr(md5(uniqid('nonce_', true)),0,16);
$temprealm="http://magentohost/api/rest/products";
$realm=urlencode($temprealm);
$oauth_version="1.0";
$oauth_signature_method="HMAC-SHA1";
$oauth_consumer_key="dfddfgdgdfgddf6qgygmyvw7e3";
$oauth_access_token="fdgdfgfdgdfg357gimpdnuejvcbtk51ni";
$oauth_method="GET";
$oauth_timestamp=time();
$algo="sha1";
$key="sb88hfdihyg25ipt1by559yzbj2m3861&s7uhaheu8nrx961oxg6uc3os4zgyc2tm"; //consumer secret & token secret //Both are used in generate signature
$data="oauth_consumer_key=".$oauth_consumer_key."&oauth_nonce=".$nonce."&oauth_signature_method=".$oauth_signature_method."&oauth_timestamp=".$oauth_timestamp."&oauth_token=".$oauth_access_token."&oauth_version=".$oauth_version;

$send_data=$oauth_method."&".$realm."&".urlencode($data);
$sign=hash_hmac($algo,$send_data,$key,1); // consumer key and token secrat used here
$fin_sign=base64_encode($sign);

echo $fin_sign;

关于iphone - magento REST API 在 iPhone 中无法访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16099730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com