Add-on:OAuth Helper: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Bot: Changing template: Addon)
m (Addon-Bot Update)
Line 1: Line 1:
{{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}}
{{Add-on  
{{Add-on  
|Name=OAuth Helper
|Name=OAuth Helper

Revision as of 06:19, 16 April 2015

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.

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.