Post

Replies

Boosts

Views

Activity

Reply to Authorize to Apple Music via In-App Browser (FB Messanger,Instaram,Twitter))
I actually found that if you hijack the window.open and replace it with window.location.href, you can use the same window to authorize rather than creating a new window: window.open = function(url: string, windowName: string, windowFeatures: string) {     console.log('window caught', url, windowName, windowFeatures);     window.location.href=url;     return null;   };
Oct ’21