Adobe Connect User Community
Menu

#1 2022-02-28 07:58:12

Querfeld1

Login by URL not working anymore

We have a web application through which we can manage all webinars separately. From it, we also invite all the participants that we register in Adobe Connect beforehand.

We send invitations from our web application with emails that contain a link that logs the attendee directly into Adobe Connect and takes them to their webinar.

The Link looks like this:
https://"name".adobeconnect.com/system/login/ok?login="USERNAME"&password="PASSWORD"="MEETINGI-ID"

Since about November 2021 we can't do that anymore, the message "Request was not processed" appears.

Does anyone here have an idea how we can solve this?

Best,
QF1

Offline

#2 2022-02-28 15:29:30

Jorma_at_CoSo

Re: Login by URL not working anymore

QF1,

My first change would be to modify the Meeting ID portion of the call.

https://"name".adobeconnect.com/system/login/ok?login="USERNAME"&password="PASSWORD"&sco-id="MEETING-ID"

However, this is an older syntax for API work and I'd probably move to either this syntax

https://"name".adobeconnect.com/MEETINGURL/?action=login&login="USERNAME"&password="PASSWORD"

Or you go with the API script workflow where you login in a user with the APIs and then get their session ID. Then you can use that session ID to get them into meetings without exposing their UN/PW.

Your API script would log in the user by starting with a similar workflow

https://"name".adobeconnect.com/api/xml?action=login&login="USERNAME&password="PASSWORD"

Then get the user's session id by calling for their common info

https://"name".adobeconnect.com/api/xml?action=common-info

Then you can pass them into the meeting with their session ID rather than UN/PW.

https://"name".adobeconnect.com/MEETINGURL/?session="SESSION-COOKIE"

Offline

#3 2022-03-02 02:35:16

Querfeld1

Re: Login by URL not working anymore

Jorma_at_CoSo,

Thank you very much for your fast reply to my question.

This

   https://"name".adobeconnect.com/system/login/ok?login="USERNAME"&password="PASSWORD"&sco-id="MEETING-ID"

did the Trick, works like a charm.

I thank you very much for your help and wish you a successful day.

Offline

Board footer