-
Notifications
You must be signed in to change notification settings - Fork 0
Authorizer
Ole W edited this page Jul 8, 2024
·
6 revisions
Class: SPOCAuthorizer
- Stellt eine Authorisierung mit OAuth2 bereit
auth := SPOCAuthorizer new.
"On first execution you get asked about the client secret and id"
url := auth startAuthorization.
"Browser öffnet sich automatisch und die URL der Spotify Anmeldeseite befindet sich in der Zwischenablage"
"Now you can use the access token with"
accessToken := auth accessToken.
- Falls sich der Nutzer erfolgreich angemeldet hat und der accesssToken vorliegt, werden alle vorher registrierten callbacks getriggert
auth registerSuccessCallback: [Transcript showln: 'User is now authorized'].