Dominic
Dominic

Reputation: 341

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

Upvotes: 1

Views: 809

Answers (1)

dev_mustafa
dev_mustafa

Reputation: 1111

Try adding the request type option for the request.

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

Upvotes: 1

Related Questions