gpt4 book ai didi

php - 如何发出 HTTP POST 请求?

转载 作者:可可西里 更新时间:2023-10-31 22:49:14 26 4
gpt4 key购买 nike

curl -F 'access_token=...' \
-F 'message=Hello, Arjun. I like this new API.' \
https://graph.facebook.com/arjun/feed

文档说我需要发布一个来发布到墙上。

最佳答案

值得一提的是,MANCHUCK 建议使用 cURL 并不是此功能的最佳方式,因为 cURL 不是核心 PHP 扩展。管理员必须手动编译/启用它,并且它可能无法在所有主机上使用。正如我的博客中已经指出的那样 - PHP has native support for POSTing data从 PHP 4.3 版本开始(8 年前发布!)。

// Your POST data
$data = http_build_query(array(
'param1' => 'data1',
'param2' => 'data2'
));

// Create HTTP stream context
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded',
'content' => $data
)
));

// Make POST request
$response = file_get_contents('http://example.com', false, $context);

关于php - 如何发出 HTTP POST 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3084834/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com