Skip to content

Commit 183fd89

Browse files
authored
[Friends] Add Page parameter to friendliest method
1 parent 7f73df8 commit 183fd89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyblox3/api/friends.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class Friends:
1414

1515
# GET /users/{userId}/friends
1616
# 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")
17+
def friendList(id, page):
18+
a = Http.sendRequest("https://api.roblox.com/users/" + str(id) + "/friends?page=" + str(page))
1919
b = a.decode("utf-8")
2020
c = json.loads(b)
2121
result = []

0 commit comments

Comments
 (0)