Add-on:OAuth Helper: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Addon-Bot repo category update)
m (Addon-Bot Update)
Line 3: Line 3:
|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=

Revision as of 19:51, 27 December 2017

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.