0

那里的任何人都可以指出我在哪里出错了吗?

<?php
if(!empty($_GET))
{
    if(isset($_GET['token']))
    {
        $token = $_GET['token'];

        $ch = curl_init('https://www.google.com/m8/feeds/');

        if($ch)
        {
            curl_setopt
            (
                $ch,
                CURLOPT_HTTPHEADER,
                array
                (
                /*  "Content-Type: application/x-www-form-urlencoded",*/
                    "Authorization: AuthSub token=\"{$token}\""
                )
            );
            curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
            //curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true);
            curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
            curl_setopt($ch,CURLOPT_HTTPGET,true);
            curl_setopt($ch,CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_1);
            curl_setopt($ch,CURLOPT_HEADER,true);
            //curl_setopt($ch,CURLOPT_POST,true);

            $res = curl_exec($ch);

            echo $res.'<br />';
        }
    }
}

?>

这是我用来将用户重定向到谷歌的链接 -

https://www.google.com/accounts/AuthSubRequest?scope=https://www.google.com/m8/feeds/&session=0&secure=0&next=http://www.etfaq.com/invite_friends.php% 3Ftype%3Dgmail

它一直给我这个-

HTTP/1.1 400 Bad Request 

内容类型:文本/html;charset=UTF-8 日期:2010 年 11 月 28 日星期日 09:59:53 GMT 过期时间:2010 年 11 月 28 日星期日 09:59:53 GMT 缓存控制:私有,max-age=0 X-Content-Type-Options: nosniff X-Frame-Options:SAMEORIGIN X-XSS-Protection:1;模式=块服务器:GSE 传输编码:分块

请求 URI 无效

有人知道吗?我知道我在一个或多个地方错了,但是我的大脑无法正常工作,因为我尝试了将近 4 个小时:D

谢谢,安詹

4

1 回答 1

0

抱歉,是我的错 :)

我发现我必须使用

curl_init('https://www.google.com/m8/feeds/default/full');

代替

curl_init('https://www.google.com/m8/feeds/');

谢谢,安詹

于 2010-11-28T12:34:36.453 回答