Fix OAuth + fix OAuth documentation + undocument logout button (#7697)

* Remove mentions to gr.LogoutButton in docs

* Fix session obj + update example

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Lucain 2024-03-14 15:37:51 +01:00 committed by GitHub
parent 5d1e8dae5a
commit a1c24dbf2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 5 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": patch
---
fix:Fix OAuth + fix OAuth documentation + undocument logout button

View File

@ -196,7 +196,6 @@ class OAuthProfile(typing.Dict): # inherit from Dict for backward compatibility
with gr.Blocks() as demo:
gr.LoginButton()
gr.LogoutButton()
gr.Markdown().attach_load_event(hello, None)
"""
@ -242,7 +241,6 @@ class OAuthToken:
with gr.Blocks() as demo:
gr.LoginButton()
gr.LogoutButton()
gr.Markdown().attach_load_event(list_organizations, None)
"""

View File

@ -82,6 +82,11 @@ class Obj:
return True
return False
def get(self, item, default=None):
if item in self:
return self.__dict__[item]
return default
def keys(self):
return self.__dict__.keys()

View File

@ -263,7 +263,7 @@ Note: Gradio's built-in authentication provides a straightforward and basic laye
Gradio natively supports OAuth login via Hugging Face. In other words, you can easily add a _"Sign in with Hugging Face"_ button to your demo, which allows you to get a user's HF username as well as other information from their HF profile. Check out [this Space](https://huggingface.co/spaces/Wauplin/gradio-oauth-demo) for a live demo.
To enable OAuth, you must set `hf_oauth: true` as a Space metadata in your README.md file. This will register your Space
as an OAuth application on Hugging Face. Next, you can use `gr.LoginButton` and `gr.LogoutButton` to add login and logout buttons to
as an OAuth application on Hugging Face. Next, you can use `gr.LoginButton` to add a login button to
your Gradio app. Once a user is logged in with their HF account, you can retrieve their profile by adding a parameter of type
`gr.OAuthProfile` to any Gradio function. The user profile will be automatically injected as a parameter value. If you want
to perform actions on behalf of the user (e.g. list user's private repos, create repo, etc.), you can retrieve the user
@ -274,7 +274,7 @@ Here is a short example:
```py
import gradio as gr
from huggingface_hub import whoami
def hello(profile: gr.OAuthProfile | None) -> str:
if profile is None:
@ -289,11 +289,12 @@ def list_organizations(oauth_token: gr.OAuthToken | None) -> str:
with gr.Blocks() as demo:
gr.LoginButton()
gr.LogoutButton()
m1 = gr.Markdown()
m2 = gr.Markdown()
demo.load(hello, inputs=None, outputs=m1)
demo.load(list_organizations, inputs=None, outputs=m2)
demo.launch()
```
When the user clicks on the login button, they get redirected in a new page to authorize your Space.