Perform Authentifizierung in flurry Website mit curl

Ich muss die Authentifizierung in einer flurry-Website durchführen und dementsprechend mithilfe von curl Erkenntnisse gewinnen. Bitte unterstützen Sie mich bei der Implementierung.

Folgen ist Code-Snippet implementiert

    $ch=curl_init();
    $url='https://auth.flurry.com/auth/v1/session';
    curl_setopt($ch, CURLOPT_URL, $url);
    $headers=array('Content-Type:application/vnd.api+json');
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_POST, true);
    $post='{"data":{"type":"session","id":"bc150468-5bd8-4914-b00a-0ee496a2aa98","attributes":{"scopes":"","email":"email","password":"password","remember":"false"}}}';
    curl_setopt($ch, CURLOPT_POSTFIELDS,$post);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
    $data = curl_exec($ch) or exit(curl_error($ch));
    print_r($data);

    curl_setopt($ch, CURLOPT_URL, 'https://dev.flurry.com/entitiesSummaryJson.do?appSpotOrAppCircleData=0&intervalCut=customInterval2016_07_16-2016_07_16&entityType=adSpace&zoom=d&json=true&metrics=impressions,clicks,ctr,applicationAdConversions,videoCompletions,erpm,revenue,requests,fillrate,ds_fillrate');
    $response=curl_exec($ch) or exit(curl_error($ch));

Nach Ausführung des obigen Code-Snippets können trotz erfolgreicher Authentifizierung keine Erkenntnisse gewonnen werden.

Antworten auf die Frage(0)

Ihre Antwort auf die Frage