recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - Récemment, je travaillais sur l'équipement de surveillance de Lecheng. La première étape pour obtenir un accessToken via http post json a échoué. Comment le résoudre ?

Site Web : Guide de développement d'applications Lecheng


Maintenant, je ne parviens pas à obtenir le accessToken dans la première étape. Mon code est le suivant :

function http_post_json($url, $jsonStr){
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json; charset=utf-8',
            'Content-Length: ' . strlen($jsonStr)
        )
    );

    $response = curl_exec($ch);
    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
 
    return array($httpCode, $response);
}
 
$url = "https://openapi.lechange.cn:443/openapi/accessToken";
$jsonStr = json_encode(array('phone' => '18600000000'));
echo $jsonStr;
list($returnCode, $returnContent) = http_post_json($url, $jsonStr);

Résultats des courses :

为情所困为情所困2749 Il y a quelques jours491

répondre à tous(2)je répondrai

  • phpcn_u1582

    phpcn_u15822017-05-16 13:18:43

    Je pense que votre champ postal devrait être ceci

    $data = array(
        "params" => array(
            "phone" => "1xxxxxxxxxx"    
        ),    
    );

    répondre
    0
  • 習慣沉默

    習慣沉默2017-05-16 13:18:43

    Les données que vous avez téléchargées sont conformes au manuel,
    $data = array(

    "params" => array(
        "phone" => "1xxxxxxxxxx"    
    ),    

    );
    Vous pouvez également demander au service client et en essayer davantage

    répondre
    0
  • Annulerrépondre