0

有人可以看看我是如何设置这个 REST 调用的吗?我找不到这样的例子,我无法让它工作。

它可能是空白的 'link_name_to_fields_array' 参数。我已阅读文档并不太了解该参数。我不知道这是否导致了我的问题。

任何帮助将不胜感激。

//SET UP CURL
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

//parameters for get_entry call (I received a session id from a call to the login function.  Using it here)
//I manually got this user 'id' form the sugarcrm database
$parameters = array(
         'session'=>$result->id,
         'module_name' => 'users',
         'id' => '21a6a633-40de-9bf4-aa14-4f8753ea5aa2',
         'select_fields' => array('user_name'),
         'link_name_to_fields_array'=> array()
 );


$json = json_encode($parameters);
$postArgs='method=get_entry&input_type=JSON&response_type=JSON$rest_data=' . $json;
curl_setopt($curl,CURLOPT_POSTFIELDS, $postArgs);
$result2 = curl_exec( $curl );
echo("<pre>" . print_r($result2,true) . "</pre>");

输出为“ Bad data pass in; Return to Home

4

1 回答 1

2

您在 postArgs 行中有错误(替换$rest_data&rest_data)。试试这个:

$postArgs='method=get_entry&input_type=JSON&response_type=JSON&rest_data=' . $json;
于 2012-04-25T07:01:32.533 回答