Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.6k views
in Technique[技术] by (71.8m points)

php - Get Access Token from Refresh Token using cURL

I am trying to get generate a token using curl. I am new to API generating tokens

<?php
    $username = '12345678'; //Fill with your app username Key
    $password = 'XXXXXXXXXXXXX'; // Fill with your app passowrd
    $headers = ['application/x-www-form-urlencoded'];
    $url = 'https://api.equitybankgroup.com/v1/token';
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($curl, CURLOPT_HEADER, FALSE);
     $credentials = 'XXXXXXXXXXXXX'; //API Key
  curl_setopt($curl, CURLOPT_HTTPHEADER, array('Authorization: Basic '.$credentials));
    curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password);
    $result = curl_exec($curl);
    echo $result;
    curl_close($curl);

?>

I have tried posting in postman, and it generating well.

How do generate a token using the above code enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try adding the request type option for the request.

curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$vars);  //Post Fields

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...