Guzzle发布请求在浏览器中工作但不在应用程序中

时间:2014-06-05 18:21:23

标签: php wordpress curl laravel guzzle

我正在尝试访问wordpress.com API并且遇到Guzzle问题。

$client = new GuzzleHttp\Client();
$request = $client->post('https://public-api.wordpress.com/oauth2/token')
        ->setPostField('client_id', Config::get('wordpress.id'))
        ->setPostField('redirect_uri', Config::get('wordpress.redirect_url'))
        ->setPostField('client_secret', Config::get('wordpress.secret'))
        ->setPostField( 'code', $code)
        ->setPostField('grant_type', 'authorization_code');

如果我将所有数据输入Postman,它就可以了!但是,如果我使用guzzle,则端点响应为400。这让我相信帖子数据没有被发送,但刚刚开始使用guzzle我不知道为什么。我已经检查了所有Config::get...返回了他们应该做的事情,$code也是如此。

关于我应该做什么的任何想法?

更新1

这适用于cURL:

    $curl = curl_init( "https://public-api.wordpress.com/oauth2/token" );
    curl_setopt( $curl, CURLOPT_POST, true );
    curl_setopt( $curl, CURLOPT_POSTFIELDS, array(
        'client_id' => Config::get('wordpress.id'),
        'redirect_uri' => Config::get('wordpress.redirect_url'),
        'client_secret' => Config::get('wordpress.secret'),
        'code' => $code, // The code from the previous request
        'grant_type' => 'authorization_code'
    ) );
    curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1);
    $auth = curl_exec( $curl );
    $secret = json_decode($auth);
    $access_key = $secret->access_token;
    dd($access_key);

1 个答案:

答案 0 :(得分:2)

还有其他人与您所描述的here有类似的问题。看起来数组方法可能是一次添加一个值对的好方法吗?

根据Guzzle docs似乎还有另一种格式选项可能也可以这样声明:

$request = $client->post('http://httpbin.org/post', array(), array(
    'custom_field' => 'my custom value',
    'file_field'   => '@/path/to/file.xml'
));
$response = $request->send();

要尝试的东西。