0

我已经根据文档为仅应用程序身份验证准备了我的不记名令牌,现在我有了我的标题,但我不知道如何发送它以获得响应:

      <?php
                $headers = array( 
                    "GET /1.1/search/tweets.json? HTTP/1.1", 
                    "Host: api.twitter.com", 
                    "User-Agent: my Twitter App v.1",

                    "Authorization: Bearer mybearertoken",


                ); 
$url = "https://api.twitter.com/1.1/search/tweets.json?q=%23SOMEHASHTAG&count=100";

通常,对于 v1,我只会执行 $result=json_decode(file_get_contents($url), true) 但在这种情况下我不知道如何进行。

4

1 回答 1

1

您可以使用 PHP 的上下文参数。更多信息可以在这里找到:http: //docs.php.net/context

在您的情况下,代码将类似于以下内容:

$headers = array( 
            "GET /1.1/search/tweets.json? HTTP/1.1", 
             "Host: api.twitter.com", 
             "User-Agent: my Twitter App v.1",
             "Authorization: Bearer mybearertoken",
             ); 
$url = "https://api.twitter.com/1.1/search/tweets.json?q=%23SOMEHASHTAG&count=100";

$context = stream_context_create($headers);

$result=json_decode(file_get_contents($url, false, $context));
于 2013-04-28T13:28:29.893 回答