我不理解 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/')
我可以使用这些功能中的一个或两个吗?我该怎么写?我正在寻找关于此的良好文档的时间。