mirror of
https://silica.codes/BedrockReverse/PyFab.git
synced 2025-04-06 05:05:43 +12:00
Update PlayFab.py to have GetPublishedItem
This commit is contained in:
parent
fe17f5e854
commit
0133b996c1
2 changed files with 7 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -161,3 +161,4 @@ cython_debug/
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
settings.json
|
settings.json
|
||||||
|
playfab-catalog.json
|
|
@ -162,6 +162,11 @@ def GetEntityToken(playfabId, accType):
|
||||||
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
PLAYFAB_SESSION.headers.update({"X-EntityToken": entitytoken})
|
||||||
return req
|
return req
|
||||||
|
|
||||||
|
def GetPublishedItem(itemId):
|
||||||
|
return sendPlayFabRequest("/Catalog/GetPublishedItem", {
|
||||||
|
"ETag": "",
|
||||||
|
"ItemId": itemId})
|
||||||
|
|
||||||
def Search(query, sfilter, orderBy, select, top, skip):
|
def Search(query, sfilter, orderBy, select, top, skip):
|
||||||
return sendPlayFabRequest("/Catalog/Search", {
|
return sendPlayFabRequest("/Catalog/Search", {
|
||||||
"count": True,
|
"count": True,
|
||||||
|
|
Loading…
Add table
Reference in a new issue