Ich habe die Daten mit GraphQL/curl wie folgt zurückgegeben:
{ "data" : { "publisher" : { "contracts" : { "totalCount" : 11, "count" : 1, "resultList" : [
Ich möchte ein resultList-Array erhalten und erhalte ständig die Fehlermeldung „Warnung: Es wird versucht, die Eigenschaft „Daten“ in der Zeichenfolge zu lesen“, wenn ich versuche, mit $result->data zum ersten Objekt zu wechseln. Was habe ich falsch gemacht?
Die Variable in der Curl-Anfrage ist $result.
Update: Ich habe versucht zu dekodieren. Sind die zurückgegebenen Daten vom Typ INT? was zu tun?
function getData($data_String){ $endpoint = "https://programs.api.cj.com/query"; $authToken = "pass"; $qry = '{"query":"{ publisher { contracts(publisherId: \"xxxxxxx\", limit: 1, filters: {advertiserId: \"'.$advertiser_id.'\"}) { totalCount count resultList { startTime endTime status advertiserId programTerms { id name specialTerms { name body } isDefault actionTerms { id actionTracker { id name description type } lockingMethod { type durationInDays } performanceIncentives { threshold { type value } reward { type commissionType value } currency } commissions { rank situation { id name } itemList { id name } promotionalProperties { id name } rate { type value currency } } } } } } } }","variables":null}'; $headers = array(); $headers[] = 'Content-Type: application/json'; $headers[] = 'Authorization: Bearer '.$authToken; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $endpoint); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, $qry); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $result = curl_exec($ch); if (curl_errno($ch)) { echo 'Error:' . curl_error($ch); } curl_close($ch); $data = json_decode($result); return $data; }
首先,请务必检查结果是否是有效的 json。
然后使用json_decode获取对象