question

hassan-shahzad2156 avatar image
hassan-shahzad2156 asked Anirban Sen Chowdhary answered

Fatal error: Uncaught exception 'Exception' with message 'Response has unsuccessful status' and "Unauthorized for this grant type"

Facing this fatal error Response has unsuccessful status

use RingCentral\SDK\Http\HttpException;
use RingCentral\Http\Response;
use RingCentral\SDK\SDK;

require_once(__DIR__ . '/vendor/ autoload.php');

$rcsdk = new SDK('******', '*****', ' https://platform.devtest.ringcentral.com', 'Demo', '1.0.0');
$platform = $rcsdk->platform();
$auth = $platform->login('+12679304066', '101', '*******');
// Load something nonexistent
echo 'login response:' . $auth->text(). PHP_EOL;

installed via composer curl is enabled and also added i php.ini
curl.cainfo = "E:/wamp/cacert.pem" after downloading pem file.
topic-default
1 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

ak avatar image
ak answered
Hi Hassan,

If you are using custom SSL Certificates you could adopt the following methods to set the path to the PEM file :

1.) Within the SDK

This option would require modifying the SDK the  Cient.php code. When using this approach, ideally the path parameter could be passed into the SDK.

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);  curl_setopt($ch, CURLOPT_CAINFO, "/path/to/cacert.pem");    

 2.)  using the php.ini file
You would have to add this to the php.ini file :
curl.cainfo=/path/to/cacert.pem 
For more detailed information Refer to this in our Github-PHP-SDK-Issue

Could you verify if the certificate is valid if you are using the option 2 specified above
1 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

hassan-shahzad2156 avatar image
hassan-shahzad2156 answered
Ak,
I had already go through this link and resolve this error by second method you specify, after that i am facing this error attached in my issue.
I follow your first step  Within the SDK but even then this issue exists.
please help

1 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

ak avatar image
ak answered
Hi Hassan,

The reason you are getting that error is because your application is of type "Public" and we make sure that all the RingCentral Applications of type Public implement the  Authorization Code Flow mandatorily.

Kindly take a look at our demo in PHP here :
https://github.com/grokify/ringcentral-demos-oauth/tree/master/php

For further information on Authorization Flow, please refer to our documentation here :
https://developer.ringcentral.com/api-docs/latest/index.html#!#AuthorizationCodeFlow

Let us know if you are able to get it working. Thanks.
1 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Anirban Sen Chowdhary avatar image
Anirban Sen Chowdhary answered

If you're using an OAuth 2.0 request using the OAuth 2.0 you need to provide the correct grant_type while making a call

Please note, application created with different platform type will have different grant_type.

If your application is public then most of the case the grant_type will be Authorization code where you need to login using your user ID and password. It will be launching a browser window to make a call to an authorization URL implementing a 3-legged (Authorization Flow) auth in you PHP code. Also for the issue you are facing, you also need to check the SSL certificate you are using.

RingCentral JavaScript SDK has methods to handle the authorization code grant flows.

1 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 10 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.