Question

Calling rc api password flow type in PHP sdk

  • 10 August 2019
  • 1 reply
  • 2065 views

I am exploring rc api that has password flow type which means username & password required while calling.

Trying to call in php sdk here https://github.com/ringcentral/ringcentral-php

Any sample in PHP SDK to implement password flow with username & password to start with?


1 reply

There is a PHP sample example for you here to implement username & password:

https://github.com/ringcentral/ringcentral-php/blob/master/demo/sms.php#L18

$platform->login($credentials['username'], $credentials['extension'], $credentials['password']); 

Hope this help

Reply