providers.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "azure": {
  3. "url_authorize": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
  4. "url_access_token": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
  5. "url_resource_owner_details": "https://graph.microsoft.com/v1.0/me",
  6. "scope": "User.Read"
  7. },
  8. "facebook": {
  9. "url_authorize": "https://www.facebook.com/v9.0/dialog/oauth",
  10. "url_access_token": "https://graph.facebook.com/v9.0/oauth/access_token",
  11. "url_resource_owner_details": "https://graph.facebook.com/v9.0/me?fields=id,email&access_token=<access_token>&appsecret_proof=<appsecret_proof>",
  12. "scope": "public_profile,email"
  13. },
  14. "github": {
  15. "url_authorize": "https://github.com/login/oauth/authorize",
  16. "url_access_token": "https://github.com/login/oauth/access_token",
  17. "url_resource_owner_details": "https://api.github.com/user",
  18. "scope": "user:email"
  19. },
  20. "google": {
  21. "url_authorize": "https://accounts.google.com/o/oauth2/v2/auth",
  22. "url_access_token": "https://www.googleapis.com/oauth2/v4/token",
  23. "url_resource_owner_details": "https://openidconnect.googleapis.com/v1/userinfo",
  24. "scope": "openid email profile"
  25. },
  26. "instagram": {
  27. "url_authorize": "https://api.instagram.com/oauth/authorize",
  28. "url_access_token": "https://api.instagram.com/oauth/access_token",
  29. "url_resource_owner_details": "https://api.instagram.com/v1/users/self?access_token=<access_token>",
  30. "scope": "basic"
  31. },
  32. "linkedin": {
  33. "url_authorize": "https://www.linkedin.com/oauth/v2/authorization",
  34. "url_access_token": "https://www.linkedin.com/oauth/v2/accessToken",
  35. "url_resource_owner_details": "https://api.linkedin.com/v2/me",
  36. "scope": "r_liteprofile r_emailaddress"
  37. }
  38. }