You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This page is intended to show an example of retrieving data from the IGDB API. Click the button below to request a fresh batch of data from the backend.</p>
16
+
<p>See the GitHub repository for various language implentations of an IGDB library: <ahref="https://github.com/LinkofOrigin/GameDataMultiLibrary/tree/release">IGDB Multi Library</a></p>
// Wrap up our return data into some objects with notable fields
37
78
return{
38
-
"genres": genreData,
39
-
"secondary": secondaryData,
40
-
"tertiary": tertiaryData
79
+
"primary": {
80
+
"title": "Genres",
81
+
"summary": "5 genres the API returns (no order or sort logic).",
82
+
"data": primaryData,
83
+
},
84
+
"secondary": {
85
+
"title": "Games",
86
+
"summary": "5 games with a high average rating but relatively few total ratings. Maybe your next favorite game is here?",
87
+
"data": secondaryData,
88
+
},
89
+
"tertiary": {
90
+
"title": "Characters",
91
+
"summary": "5 characters with at least one associated game. These characters were selected by sorting their names alphabetically and then pulling a random page number.",
0 commit comments