Like the title says, I have currently implemented a socialite login on my website but I don't know exactly how to get a list of user friends that also use my app when a user logs in.
The socialite documentation states the following code example to change the "scope". I've read somewhere else that you are suppose to use this?
return Socialite::driver('github')
->scopes(['scope1', 'scope2'])->redirect();
Nowhere does it state in the socialite github readme what scope means in this case though. Is this simply a social media api thing? Hopefully somebody can help me out.
It also states that setting up a scope with override all existing scopes, what are the default ones to begin with?