作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个使用 WP_HTTP 进行 API 调用的 WordPress 插件。
代码如下:
$request = new WP_Http;
$headers = array(
'Content-Type: application/x-www-form-urlencoded', // required
'accesskey: abcdefghijklmnopqrstuvwx', // required - replace with your own
'outputtype: json' // optional - overrides the preferences in our API control page
);
$response = $request->request('https://api.abcd.com/clients/listmethods', array( 'sslverify' => false, 'headers' => $headers ));
但我得到的响应是“406 Not Acceptable ”。
当我尝试对上述请求使用 cURL 时,请求成功。
最佳答案
406 错误表示网络服务可能无法识别您的 Content-Type header ,因此它不知道它响应的是什么格式。您的 $headers
变量应该是一个关联数组,如下所示:
$headers = array(
'Content-Type' => 'application/x-www-form-urlencoded',
'accesskey' => 'abcdefghijklmnopqrstuvwx',
'outputtype' => 'json');
或看起来像原始标题(包括换行符)的字符串,如下所示:
$headers = "Content-Type: application/x-www-form-urlencoded \n
accesskey: abcdefghijklmnopqrstuvwx \n
outputtype: json";
WP_Http 类会将原始 header 字符串转换为关联数组,因此从名义上讲,最好先将数组传递给它。
关于wordpress - 为什么我在使用 WordPress WP_HTTP 时得到 "406 Not Acceptable"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11031167/
我正在尝试从我的 WordPress 网站获取重力表单,以用作另一个应用程序(CakePhp 网站)的登录表单。该表单有两个字段——用户名和密码。我添加了一个钩子(Hook),使用 gform_aft
我正在编写一个使用 WP_HTTP 进行 API 调用的 WordPress 插件。 代码如下: $request = new WP_Http; $headers = array( 'Cont
我正在编写一个使用 WP_HTTP 进行 API 调用的 WordPress 插件。 代码如下: $request = new WP_Http; $headers = array( 'Cont
我是一名优秀的程序员,十分优秀!