我正在尝试在cloudelements中创建一个元素实例。从url查询字符串中检索了code参数,有以下代码库:
$ch = curl_init();
$code = $_REQUEST['code'];
$headers = array(
'Content-Type: application/json',
'Accept: application/json',
'Authorization: User xxxxxxxxyyyyyyyyyzzzzzzzzzzz=, Organization ccccccccccccccccccccccccc'
);
$url = 'https://api.cloud-elements.com/elements/api-v2/elements/23/instances';
$curl_post_data = array(
"providerData" => array(
"code" => $code
),
"name" => "salesforce_instance_".date("Y-m-d-H:i:s"),
"configuration" =>
array(
"base.url" => "https://login.salesforce.com",
"filter.response.nulls" => "true"
)
);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($curl_post_data));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$curl_response = curl_exec($ch);
但是,我收到了以下错误:
Authentication with the CRM provider failed. Please ensure valid authentication values were provided.
答案 0 :(得分:0)
这可能是标题部分的问题。请检查标题中的“授权”字段。这是一个格式化的字符串。因此空格和逗号是可数的。最好从其UI本身进行复制粘贴。
您可以从他们的“ api试试看”页面获取授权标头。要进入该屏幕,请首先登录云元素。然后按“ API Docs”按钮。它将引导您到页面-https://my.cloudelements.io/api-docs/platform。然后从左侧选择一些选项。例如“元素”。然后,您可以在右侧看到一组端点。从那里选择一个,例如/ elements / {keyOrId} / instances。然后按“试用”按钮。在授权字段上,您可以获取标头值。将其复制并粘贴到您的代码中。
谢谢