Add-on:OAuth Helper: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Addon-Bot Update)
m (Addon-Bot repo category update)
Tag: Manual revert
 
(63 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Add-on
{{Addon
|Name=OAuth Helper
|Name=OAuth Helper
|provider-name=Rick Phillips (ruuk)
|provider-name=Rick Phillips (ruuk)
|ID=script.module.oauth.helper
|ID=script.module.oauth.helper
|latest-version=0.0.7
|latest-version=0.0.9
|extension point=xbmc.python.module
|extension point=xbmc.python.module
|provides=
|provides=
Line 30: Line 30:
|Email=
|Email=
|broken=
|broken=
|icon url=http://mirrors.kodi.tv/addons/gotham/script.module.oauth.helper/icon.png}}
|icon url=http://mirrors.kodi.tv/addons/leia/script.module.oauth.helper/icon.png}}
{{Add-on
|Name=OAuth Helper
|provider-name=Rick Phillips (ruuk)
|ID=script.module.oauth.helper
|latest-version=0.0.7
|extension point=xbmc.python.module
|provides=
|Summary=Provides simple google device OAuth handling and generic device OAuth via my server
|Description=This module provides simple OAuth handling. The module handles all user interaction.
 
PicasaWeb example:
 
helper = OAuthHelper.GoogleOAuthorizer.(
    addon_id='plugin.image.picasa',
    client_id='blahblah342980723405.apps.googleusercontent.com',
    client_secret='2349057829034572',
    auth_scope='https://picasaweb.google.com/data/'
)
 
token = helper.getToken()
 
If you want to use the generic handling, contact me.
   
|Platform=all
|Language=
|License=GNU GENERAL PUBLIC LICENSE. Version 2, June 1991
|Forum=
|Website=
|Source=https://github.com/ruuk/script.module.oauth.helper
|Email=
|broken=
|icon url=http://mirrors.kodi.tv/addons/gotham/script.module.oauth.helper/icon.png}}


[[Category:Add-on libraries/modules]]
[[Category:Add-ons with license tag]]
[[Category:Add-ons with source tag]]
[[Category:All add-ons]]
[[Category:Gotham add-on repository]]
[[Category:Gotham add-on repository]]
[[Category:Helix add-on repository]]
[[Category:Isengard add-on repository]]
[[Category:Jarvis add-on repository]]
[[Category:Krypton add-on repository]]
[[Category:Leia add-on repository]]

Latest revision as of 04:19, 17 October 2021

OAuth Helper
icon.png

See this add-on on the kodi.tv showcase

Author: Rick Phillips (ruuk)

Type: Add-on library/module
Repo:

License: GPL v2.0
Source: Source code
Summary: Provides simple google device OAuth handling and generic device OAuth via my server
Home icon grey.png   ▶ Add-ons ▶ OAuth Helper

This module provides simple OAuth handling. The module handles all user interaction.

PicasaWeb example:

helper = OAuthHelper.GoogleOAuthorizer.(
    addon_id='plugin.image.picasa',
    client_id='blahblah342980723405.apps.googleusercontent.com',
    client_secret='2349057829034572',
    auth_scope='https://picasaweb.google.com/data/'
)

token = helper.getToken()

If you want to use the generic handling, contact me.