Skip to content

Instantly share code, notes, and snippets.

View CyrilNb's full-sized avatar
📱

Cyril CyrilNb

📱
View GitHub Profile
name: Log Release
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
@emndeniz
emndeniz / DownloadAppStoreReviews.py
Last active November 27, 2024 14:51
DownloadAppStoreReviews.py
import requests
import json
import csv
def get_reviews(app_id, jwt_token, fetch_all):
url = f"https://api.appstoreconnect.apple.com/v1/apps/{app_id}/customerReviews?limit=200&sort=-createdDate"
headers = {
"Authorization": f"Bearer {jwt_token}"
}