backendsnames.py 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. """
  2. Python Social Auth doesn't provide information about proper names for OAuth sites,
  3. so we are using this file to define those for displaying the UI.
  4. If provider is not defined here, it's name is created with `provider.name.title()`
  5. """
  6. BACKENDS_NAMES = {
  7. "angel": "AngelList",
  8. "aol": "AOL",
  9. "arcgis": "ArcGIS",
  10. "azuread-oauth2": "Azure Active Directory",
  11. "azuread-b2c-oauth2": "Azure Active Directory B2C",
  12. "azuread-tenant-oauth2": "Azure Active Directory tenant",
  13. "battlenet-oauth2": "Blizzard Battle.net",
  14. "belgiumeid": "Belgium EID",
  15. "bitbucket-oauth2": "Bitbucket",
  16. "bungie": "Bungie.net",
  17. "chatwork": "ChatWork",
  18. "classlink": "ClassLink",
  19. "digitalocean": "DigitalOcean",
  20. "douban-oauth2": "Douban",
  21. "dropbox-oauth2": "Dropbox",
  22. "echosign": "Adobe Sign",
  23. "eveonline": "EVE Online",
  24. "evernote-sandbox": "Evernote (sandbox)",
  25. "facebook-app": "Facebook",
  26. "google-appengine": "Google App Engine",
  27. "github": "GitHub",
  28. "github-org": "GitHub Organization",
  29. "github-team": "GitHub Team",
  30. "github-enterprise": "GitHub Enterprise",
  31. "github-enterprise-org": "GitHub Enterprise Organization",
  32. "github-enterprise-team": "GitHub Enterprise Team",
  33. "gitlab": "GitLab",
  34. "goclio": "Clio.com",
  35. "goclioeu": "Clio.eu",
  36. "google": "Google",
  37. "google-oauth": "Google",
  38. "google-oauth2": "Google",
  39. "google-plus": "Google Plus",
  40. "google-openidconnect": "Google",
  41. "itembase-sandbox": "Itembase (sandbox)",
  42. "justgiving": "JustGiving",
  43. "khanacademy-oauth1": "Khan Academy",
  44. "lastfm": "Last.fm",
  45. "line": "LINE",
  46. "linkedin": "LinkedIn",
  47. "live": "Live Connect",
  48. "livejournal": "LiveJournal",
  49. "loginradius": "LoginRadius",
  50. "mailchimp": "MailChimp",
  51. "mailru-oauth2": "Mail.ru",
  52. "mapmyfitness": "MapMyFitness",
  53. "mediawiki": "MediaWiki",
  54. "mendeley-oauth2": "Mendeley",
  55. "microsoft-graph": "Microsoft",
  56. "mineid": "MineID",
  57. "nationbuilder": "NationBuilder",
  58. "naver": "NAVER",
  59. "actionid-openid": "NGP VAN ActionID",
  60. "nk": "nk.pl",
  61. "odnoklassniki-oauth2": "OK.RU",
  62. "odnoklassniki-app": "OK.RU",
  63. "openshift": "OpenShift",
  64. "openstreetmap": "PpenStreetMap",
  65. "orcid": "ORCID",
  66. "professionali": "Professionali.ru",
  67. "qq": "QQ",
  68. "rdio-oauth1": "Pandora",
  69. "rdio-oauth2": "Pandora",
  70. "salesforce-oauth2": "Salesforce",
  71. "salesforce-oauth2-sandbox": "Salesforce (sandbox)",
  72. "saml": "SAML",
  73. "shimmering": "Shimmering Verify",
  74. "stackoverflow": "StackExchange",
  75. "stocktwits": "StockTwits",
  76. "opensuse": "Open SUSE OpenId",
  77. "datagouv": "uData",
  78. "vimeo-oauth2": "Vimeo",
  79. "vk": "VK",
  80. "weixinapp": "Weixin",
  81. "yahoo-oauth": "Yahoo",
  82. "yahoo-oauth2": "Yahoo",
  83. "yammer-staging": "Yammer (staging)",
  84. "yandex-openid": "Yandex",
  85. "yandex-oauth2": "Yandex",
  86. "yaru": "Yandex",
  87. }