Last active
June 24, 2020 07:41
-
-
Save cywang117/ce17ede6dc0b57b7fbb9c46ee03c6e47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/api/reviews/:gameid | |
{ | |
steamPurchasedCount: 2500, | |
otherPurchasedCount: 500, | |
data: [ | |
{ | |
"id": 1, | |
"id_user": 628, | |
"user": { | |
"id": 628, // matches id_user | |
"username": "Daron.Lemke59", | |
"profile_url": "https://res.cloudinary.com/cywang117/image/upload/v1592560204/steam_reviews/avatars/236_z5ngj3.png", | |
"is_online": false, | |
"num_products": 87, | |
"num_reviews": 6, | |
"steam_level": 37, | |
"id_badge": 4, // id may be null, in which case badge entry won't be present | |
"badge": { | |
"id": 4, // matches id_badge | |
"title": "Product Registration", | |
"xp": 100, | |
"badge_url": "https://res.cloudinary.com/cywang117/image/upload/v1592556355/steam_reviews/badges/game-mechanic_y7nd2p.png" | |
} | |
"is_in_game": false, | |
"in_game_id": null, | |
"in_game_status": null | |
}, | |
"id_game": 1, | |
"is_recommended": true, | |
"hours_on_record": "1872.7", | |
"hours_at_review_time": "1199.2", | |
"purchase_type": "direct", | |
"date_posted": "2020-06-03T15:00:00.000Z", | |
"received_free": false, | |
"review_text": "Aut fugit aut ipsa. Similique ad aperiam velit aperiam sit. Consequatur consequuntur autem occaecati exercitationem officia cupiditate dolorem inventore. Voluptas quo vel assumenda laborum autem. Aut qui ea ab voluptatibus officiis. Cum dolore sed qui eligendi voluptatem aut.", | |
"num_found_helpful": 418, | |
"num_found_funny": 359, | |
"num_comments": 84 | |
}, | |
{ | |
gameId: 1 | |
... etc etc. Total data count will be 10 every time | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment