Skip to content

Authorizer

Ole W edited this page Jul 8, 2024 · 6 revisions

Class: SPOCAuthorizer

  • Stellt eine Authorisierung mit OAuth2 bereit

Example Usage

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.

Success Callbacks

  • 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'].
Clone this wiki locally