I actually don't have any problems with the API call. I'm already getting what i need but i am just wondering why organizerKey can be any number and it will still return the same result based off the token, webinarKey, or registrantKey. This applies to Get All, Get, Create, And Delete. I can get using `https://api.getgo.com/G2W/rest/v2/organizers/1234567890123456789/webinars/<validWebinarKey>/registrants/<validRegistrantKey>` and it will still get the registrant based of the valid keys and token except the organizer Key.
Hello,
Did you find a way to do this?
Thank you
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...
directly from browser i see the corrected screen
Can you help me?
Thanks
regards.
B.
We have integration done on our wix website with go to webinar,
We used to have issue with expiring tokens, and they use to get expired in 30 days and we upload refresh token on the website and then it starts working again.
Recently we had an issue when someone try to click on the book now button it say requesting but never register a person on go to webinar.
I have check if there is any issue with code and i can see the following i hope someone would be able to help me to rectify this issue.
These are the errors we arw getting.
Running the code for the Home page. To debug this code in your browser's dev tools, open g0gqk.js.
wixSelector.ts:304 TypeError: $w(...).disable is not a function
at g0gqk.js:8:30
at t (wixSelector.ts:302:19)
at wixSelector.ts:317:27
at wixSelector.ts:119:48
at Array.map (<anonymous>)
at h (wixSelector.ts:119:31)
at Array.map (<anonymous>)
at Object.flushOnReadyCallbacks (wixSelector.ts:124:65)
at J (applications.ts:384:21)
at async Object.runAsyncAndReport (platformLogger.ts:204:10)
t @ wixSelector.ts:304
:1210 Unrecognized feature: 'vr'.
createConsoleProxy.ts:47 Running the code for the Webinars page. To debug this code in your browser's dev tools, open vb3tf.js.
staticEventsManager.ts:75 function dsWebinars_ready is registered as a static event handler but is not exported from the page code. Please remove the static event handler or export the function.
(anonymous) @ staticEventsManager.ts:75
3createConsoleProxy.ts:47 OK Requesting
Hi @Awan welcome to the GoTo Community. Please go to developer.goto.com and click Support on the top to request assistance.
1) I created a webhook
response:
{ "_embedded": { "webhooks": [ { "eventName": "registrant.added", "eventVersion": "1.0.0", "callbackUrl": "https://arch.al/webhook/", "product": "g2w", "webhookKey": "e51182da-1281-4cec-81ed-25037f8947ed", "state": "INACTIVE", "createTime": "2024-01-03T12:16:48.679Z" } ] } }
2) activated it:
3) checked its status:
{ "eventName": "registrant.added", "eventVersion": "1.0.0", "callbackUrl": "https://arch.al/webhook/", "product": "g2w", "webhookKey": "e51182da-1281-4cec-81ed-25037f8947ed", "state": "ACTIVE", "createTime": "2024-01-03T12:16:48.679Z" }
4) added a registrant via https://api.getgo.com/G2W/rest/v2/organizers/5418525674414955728/webinars/4038468162058771032/regist...
with this payload:
{ "firstName": "John", "lastName": "Doe", "email": "7johndoe@example.com" }got response:
{ "registrantKey": 8774359412158568029, "joinUrl": "https://global.gotowebinar.com/sjoin/4038468162058771032/531390045", "status": "APPROVED", "asset": true }but apparently the webhook is not being trigered at all and nothing ever comes at the webhook endpoint: https://arch.al/webhook/
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.
I am trying to get authorization code through python code but i am using below code .
```
initial_url = f"https://authentication.logmeininc.com/oauth/authorize?client_id={CONSUMER_KEY}&response_type=code"
response = requests.get(initial_url)
response_key = response.request.url.split("=")[-1]
```
but i get 200 Ok but could not get the code.
I tried looking into the documentation but did not find helpful.
Hi @Wandamares,
For help with our API please reference this Help FAQ.
We do not provide support for the API here in the community.