We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f73df8 commit 183fd89Copy full SHA for 183fd89
pyblox3/api/friends.py
@@ -14,8 +14,8 @@ class Friends:
14
15
# GET /users/{userId}/friends
16
# Returns Table/Array containing the Username of all your friends
17
- def friendList(id):
18
- a = Http.sendRequest("https://api.roblox.com/users/" + str(id) + "/friends")
+ def friendList(id, page):
+ a = Http.sendRequest("https://api.roblox.com/users/" + str(id) + "/friends?page=" + str(page))
19
b = a.decode("utf-8")
20
c = json.loads(b)
21
result = []
0 commit comments