-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Password Settings not Supported #79 #86
Conversation
I prefer the other one. ExtendedSetting is in kupfer.core and can not be used by plugins. I'd also prefer if plugins did not become too entangled with the Gtk interface. As an aside, the best interface for plugins is the “kupfer interface”, i.e. exposing leaves and actions as usual. |
I will see options to implement generic OAuth flow and expose as ExtendedSetting. :) |
I was thinking... |
Added OAuth1 to this branch. Please give some feedback, so I can try add OAuth2 or rethink entire solution. =-) |
I would be wonderful to have oauth support in kupfer. @hugosenari How do I enter my own credentials? |
What you mean as credentials? If you talking about 'OAuth Token' as plugin user:
In theory we can setup a local http server (using SimpleHttpServer) and receive Token back without copy & paste, but is more code complexity to deal. :-/ If you need to know how to set Consumer Credentials:
Now If what you need is create your own Credentials Config Type: |
@hugosenari I see. So if this gets merged as a plugin developer I can use any other services which uses oauth1. Right? |
@khurshid-alam yeah but only 3 legged OAuth 1.0a. |
Fix #79
Add UserNamePassword again and expose API to plugin define own pass type.
Just because #85 will not solve problem when service only accept OAuth, SAML or any kind of login or define strange config types.