Voglio ottenere i dati di un utente specifico tramite API. In sostanza, voglio sapere quante risposte ha dato l’utente da quando si è unito al forum. Ho usato il seguente codice (in pratica ho recuperato tutte le user_actions in cui action_type=5 e poi ho stampato il numero di tali record). L’output finale non corrisponde a ciò che vedo nell’interfaccia web. Qualcuno può spiegare perché questo potrebbe accadere?
import requests, time
defaultHost = #your_default_host
# Headers for authentication
headers = {
'Api-Key': #YOUR_API_KEY,
'Api-Username':#YOUR_API_USERNAME
}
# increment the offset by 30 each time. The loop should break when the number of elements in the response is less than 30
offset = 0
data_dict ={"user_actions":[]}
username = #username_for_which_we_want_to_fetch_the_data
# filter=5 # For the "user_replied_to_a_topic"
while True:
time.sleep(0.2)
endpoint = f'https://{defaultHost}/user_actions.json?username={username}&offset={offset}&filter=5'
# Make the request
response = requests.get(endpoint,
headers=headers)
# Check the response
if response.status_code == 200:
data = response.json()
num_elements = len(data["user_actions"])
data_dict["user_actions"].extend(data["user_actions"])
offset+=30
if num_elements<30:
break
else:
print(f'Error: {response.status_code}')
break
print(len(data_dict["user_actions"]))