Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,22 +1,28 @@
|
|
1 |
import streamlit as st
|
2 |
-
from
|
3 |
-
# ... (rest of the setup code as before)
|
4 |
|
5 |
-
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
|
13 |
-
|
14 |
-
if credentials_file:
|
15 |
-
# ... (Authentication setup using uploaded credentials)
|
16 |
|
17 |
-
|
|
|
18 |
|
19 |
-
|
|
|
|
|
20 |
|
21 |
-
|
|
|
|
|
22 |
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
from requests_oauthlib import OAuth2Session
|
|
|
3 |
|
4 |
+
# ... (Load client ID and client secret securely)
|
5 |
|
6 |
+
# OAuth Configuration
|
7 |
+
authorization_base_url = 'https://accounts.google.com/o/oauth2/v2/auth'
|
8 |
+
token_url = 'https://www.googleapis.com/oauth2/v4/token'
|
9 |
+
redirect_uri = 'your_huggingface_spaces_app_url'
|
10 |
+
scopes = ['https://www.googleapis.com/auth/webmasters.readonly']
|
11 |
|
12 |
+
# ... (Streamlit UI - similar to before)
|
|
|
|
|
13 |
|
14 |
+
if st.button("Fetch Data"):
|
15 |
+
google_oauth = OAuth2Session(client_id, scopes=scopes, redirect_uri=redirect_uri)
|
16 |
|
17 |
+
# Step 1: User authorization
|
18 |
+
authorization_url, state = google_oauth.authorization_url(authorization_base_url, access_type="offline", prompt="select_account")
|
19 |
+
st.write("Please authenticate with Google:", authorization_url)
|
20 |
|
21 |
+
# Step 2: Handle redirect and fetch tokens (modify after user clicks the button)
|
22 |
+
redirect_response = st.text_input("Paste the full redirect URL here:")
|
23 |
+
token = google_oauth.fetch_token(token_url, client_secret=client_secret, authorization_response=redirect_response)
|
24 |
|
25 |
+
# Step 3: Use token in API requests
|
26 |
+
credentials = google_oauth.authorized
|
27 |
+
service = build('webmasters', 'v3', credentials=credentials)
|
28 |
+
# ... (rest of your API request logic)
|