I was wondering if anyone else looked into how to use Socialite for disconnecting the link between a social provider and my Laravel site.
Two use cases:
Upon account deletion at my site, I'd like to call a method that announces the disconnect request with FB;
Upon disconnection at FB, I'd like to process FB's callback at my site.
If Socialite doesn't support this, then 2. I can figure out myself, but for 1 I'm unsure how to address it.
So perhaps I can benefit from someone's hands-on experience here :-).
Users can also revoke at other sites, you can probably setup a webhook url for that which points to your application so you can then delete the token. At least, that's how it works in most cases.