json — Завить ошибки PHP с помощью rackspace api

Я пытаюсь сгенерировать токен с помощью API «Cloud Identity» из Rackspace (https://developer.rackspace.com/docs/cloud-identity/v2/developer-guide/#generate-an-authentication-token)

Это запрос мне нужен:

$ curl https://identity.api.rackspacecloud.com/v2.0/tokens  \
-X POST \
-d '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"yourUserName","apiKey":"yourPassword"}}}' \
-H "Content-type: application/json" | python -m json.tool

И вот как я пытаюсь это сделать:

<?php
$url = 'https://identity.api.rackspacecloud.com/v2.0/tokens';
$apiKey = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$data = "'{\"auth\":{\"RAX-KSKEY:apiKeyCredentials\":{\"username\":\"XXXXXXXX\",\"apiKey\":\"$apiKey\"}}}'";
$headers = array();
$headers[0] = '"Content-Type: application/json" | python -m json.tool';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_NONE);
$response = curl_exec($ch);
$info = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo($info);
?>

И я получаю это: 415 {«unsupportedMediaType»: {«code»: 415}}

Когда я меняю заголовок с

$headers[0] = '"Content-Type: application/json" | python -m json.tool';

в

$headers[0] = 'Content-Type: application/json | python -m json.tool';

я получил этот

И наконец, когда я изменяю заголовок на этот:

$headers[0] = 'Content-Type: application/json';

я получаю этот код ошибки: 400 {«badRequest»: {«code»: 400, «message»: «Недопустимое тело запроса json»}}

Я делаю это правильно?
Заранее спасибо.

1

Решение

Есть ли причина, по которой вы не используете PHP SDK? Это делает такие вещи намного проще.

Вам нужно изменить ваш PHP на:

<?php
$url = 'https://identity.api.rackspacecloud.com/v2.0/tokens';
$username = 'foo';
$apiKey = 'bar';

$data = <<<EOT
{"auth": {"RAX-KSKEY:apiKeyCredentials":{"username":"$username","apiKey":"$apiKey"}}}
EOT;

$headers = array('Content-Type: application/json');

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_NONE);

$response = curl_exec($ch);

echo curl_getinfo($ch, CURLINFO_HTTP_CODE);
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]