blazingbunny commited on
Commit
4e182e6
·
verified ·
1 Parent(s): ad91a7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -14
app.py CHANGED
@@ -1,22 +1,28 @@
1
  import streamlit as st
2
- from googleapiclient.discovery import build
3
- # ... (rest of the setup code as before)
4
 
5
- st.title("Search Analytics Viewer")
6
 
7
- # User Inputs
8
- site_url = st.text_input("Enter your website URL:", "https://www.example.com")
9
- start_date = st.date_input("Start Date")
10
- end_date = st.date_input("End Date")
11
- credentials_file = st.file_uploader("Upload your JSON credentials file")
12
 
13
- if st.button("Fetch Data"):
14
- if credentials_file:
15
- # ... (Authentication setup using uploaded credentials)
16
 
17
- # ... (Build the API request using user inputs)
 
18
 
19
- response = service.searchanalytics().query(siteUrl=request['siteUrl'], body=request).execute()
 
 
20
 
21
- # ... (Handle and display the API response in a data table or visualization)
 
 
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)