我一直试图让这一整天都工作,所以这是我的最后一招。
我试图用guzzle调用api,这个drupal_symfony_inject模块: https://github.com/Capgemini/drupal_symfony_inject
我在hook_symfony_yaml_config_params()中有以下配置:
// Assets client.
$assets_resources_file = $resources_folder . '/moderation.json';
$param_array['bubl_api_assets_service_client.service.description'] = $assets_resources_file;
$param_array['bubl_api_assets_client.class'] = 'BUBL\Clients\Assets\Client';
这在我的服务定义中:
{
"name": "BUBL moderation client",
"apiVersion": "v1",
"description": "BUBL moderation REST API client",
"operations": {
"getAllBubls": {
"httpMethod": "GET",
"uri": "/su/bubls",
"responseModel": "getJSONResponse",
"parameters": {
"before": {
"location": "uri",
"type": "integer",
"required": false
},
"after": {
"location": "uri",
"type": "integer",
"required": false
},
"max": {
"location": "uri",
"type": "integer",
"required": false
}
}
}
},
"models": {
"getJSONResponse": {
"type": "object",
"additionalProperties": {
"location": "json"
}
},
"getHTMLResponse": {
"type": "object",
"properties": {
"html": {
"location": "body",
"type": "string"
}
}
}
}
}
我有一个客户端,操作只是从guzzle返回响应,例如:
public function getAllBubls($before = NULL, $after = NULL) {
$response = $this->client->sendRequest('getAllBubls', ['before' => $before, 'after' => $after]);
return $response;
}
使用它时效果非常好,如下:
global $_drupal_symfony_di_container;
/** @var BUBL\Clients\Moderation\Client $client */
$client = $_drupal_symfony_di_container->get('bubl_api_moderation_client');
if (is_callable(array($client, $service_name))) {
$response = $client->{$service_name}();
return $data_source = $response['bubls'];
}
现在,我的问题是,在我抓住它之前,响应是通过json_decode运行的,并给我一个数组,这导致我遇到迁移模块的各种问题。我知道这是因为 responseModel设置为
"responseModel": "getJSONResponse",
但是,我无法找到简单请求原始响应的方法。我已经尝试过(正如在文档中提到的那样),完全删除了responseModal并添加:
"responseType": "primitive",
和(我的意思是分开)
"responseModel": "getHTMLResponse",
但不幸的是,我不会收到任何数据 - 只是一个空数组。我似乎无法找到忽略所有解析的方法,只是在JSON中得到响应?可能吗? 我还尝试创建另一个要使用的模型,但是类型是数组或对象,其余的属性在文档中对我来说真的很混乱,所以我没有尝试过帮助。它似乎根本不应该通过模型或响应类,并且有一些方法可以绕过它("原始"对我有意义,但是唉不是。)
顺便说一下,我是一个新人,我知道这对于这一个电话来说似乎有点过分,但这对其他地方来说非常重要,它已经到位,我想让我的头脑清醒它是否可以使用它。感谢。
答案 0 :(得分:0)
好的,所以我找到了一些帮助我的东西,即这个 https://github.com/Rarst/wporg-client/blob/33fb0dcce9f170b92824d09f5717ca814d7ecd29/php/WporgService.php
这是基于guzzle的,所以我从'身体'中取出参数。响应响应模型并做了这个:
"getRawResponse": {
"type": "object",
"properties": {
"body": {
"location": "body",
"type": "string"
}
}
}
返回了Guzzle Stream。所以搜索流文档我发现了这个 Not getting expected response from Guzzle
指示我将我的请求更改为
public function getAllBubls($before = NULL, $after = NULL) {
$response = $this->client->sendRequest('getAllBubls', ['before' => $before, 'after' => $after]);
// Get the raw JSON response.
return $response['body']->getContents();
}
将未经解析的JSON归还给我。