Forum Discussion
ltctech
6 years agoNew Member
GoToWebinar API Support
Hi, It seems that the Access Token that's returned by the GoToWebinar API has increased from 28 chars to 909 chars sometime around 1AM PDT. It caused our systems to error out as it overflowed th...
- 6 years ago
Hi ltctech
For help with our API please reference this Help FAQ: https://developer.goto.com/support
We do not provide support for the API here in the community.
Thanks!
trizerosrl
4 years agoNew Member
Hello,
we have create a sample php page with this code
$clientID = 'CLIENT ID DEL CLIENTE'; $response_uri = 'response_uri'; $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://authentication.logmeininc.com/oauth/authorize?client_id='.$clientID.'&response_type=code&response_uri='.$response_uri, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', )); $response = curl_exec($curl); curl_close($curl); echo $response;
If he calls it he sees the behavior we get these page result:
if i call the url https://authentication.logmeininc.com/oauth/authorize?client_id=clientID&response_type=code&response_uri=response_uri
directly from browser i see the corrected screen
Can you help me?
Thanks
regards.
B.