1

所以这就是我目前所拥有的,我正在尝试使用 PHP/cURL 制作一个脚本,该脚本将登录到 Pinger TextFree Web 服务。

我不知道我错过了什么,我没有看到 OAuth 的 HTTP 事务。我已经阅读了一些关于它的内容,但我仍然迷路了。

有什么建议么?

function sendRequest($url, $postorget, $fields = array(), $proxy)
{

$cookie_file = "cookies.txt";

//Initiate connection
$ch = curl_init();

curl_setopt($ch, CURLOPT_HTTPHEADER, $header); // set url
//curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_URL, $url); // set url
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return the transfer
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // allow https
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)'); // random agent
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // automatically follow Location: headers (ie redirects)
curl_setopt($ch, CURLOPT_AUTOREFERER, 1); // auto set the referer in the event of a redirect
curl_setopt($ch, CURLOPT_MAXREDIRS, 5); // ibm likes to redirect a lot, make sure we dont get stuck in a loop
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); // file to save cookies in
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file); // file to read cookies from
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 40); //timeout time for curl

//Check to see if a proxy is being used
if(isset($proxy)){
    //Tell cURL you're using a proxy
    curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
    //Set the proxy
    curl_setopt($ch, CURLOPT_PROXY, $proxy); 
}

//Check if request is POST or GET
if ($postorget == "post" OR $postorget == "POST")
{
    curl_setopt($ch, CURLOPT_POST, true); // use POST
    if (is_array($fields)){
        curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields)); // key => name gets turned into &key=name
    } else {
        curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); // &key=name passed in
    }
} else { 
    curl_setopt($ch, CURLOPT_POST, false); // use GET
}

$content = curl_exec($ch); // return html content
$info = curl_getinfo($ch); // return transfer info
$error = curl_error($ch);  // return any errors

curl_close($ch);

$request = array('content' => $content,
         'error' => $error,
     'info' => $info);

return $request;            
}
    //Login details
$username = "usernaem";
$password = "password";

//GET the initial login page
$initFields = "";
$initOutput = sendRequest("http://www.pinger.com/tfw/?t=1360619019053", "GET", $initFields);

echo "<textarea cols='100' rows='400'>";
print_r($initOutput);
echo "</textarea>";

//Login to pinger
$loginFields = "{\"username\":\"".$username."\",\"password\":\"".$password."\",\"clientId\":\"textfree-in-flash-web-free-1360619009-8CA1C5C1-38ED-2E31-3248-CB367450A20F\"}";
$loginOutput = sendRequest("https://api.pinger.com/1.0/web/login", "POST", $loginFields);

echo "<textarea cols='100' rows='400'>";
print_r($loginOutput);
echo "</textarea>";
4

1 回答 1

-2

我们注意到在 PHP/cURL 脚本中提到了用户名的这一部分。

请检查这部分代码:

    //Login details

$用户名 = "用户名"; $password = "密码";

您会注意到指定用户名的部分拼写错误

用户名

请尝试更正此错误,这应该可以解决您的问题。

于 2013-02-14T04:10:34.957 回答