0

我不理解 Facebook 文档中 GET 请求的这种表示法(在此处找到):

GET /oauth/access_token?
     client_id={app-id}
    &client_secret={app-secret}
    &grant_type=client_credentials

这在 apache 术语中是什么意思以及如何在 php 中编写这样的请求?我发现两者都file_get_contents需要http_get一个网址。像这样的语法:

$response = http_get("http://www.example.com/", array("timeout"=>1), $info);
$homepage = file_get_contents('http://www.example.com/')

我可以使用这些功能中的一个或两个吗?我该怎么写?我正在寻找关于此的良好文档的时间。

4

1 回答 1

0

来自@Marc B:

GET /foo 就是实际 http 请求的外观,如果您有http://example.com/foo ,您的浏览器会执行此操作。为了便于阅读,他们还把它分成了多行,仅此而已。

这有效:

file_get_contents('https://graph.facebook.com/oauth/access_token?client_id={app‌​-id}&client_secret={app-secret}&grant_type=client_credentials')

记得删除 app-id 和 app-secret 中的花括号。

于 2014-09-15T14:24:46.253 回答