Jump to content
McKay Development

Get user inventory 7 days of receiving them instead of the previous 10 days


Recommended Posts

Posted

Hello im interested do you know how other sites receive items faster 7 days of receiving them instead of the previous 10 days?

at the moment im using 

getUserInventoryContents function
  • 11 months later...
Posted

Hi! Try

https://steamcommunity.com/tradeoffer/new/partnerinventory/
steam using this endpoint to get partner inventory in tradeoffer create window

let qs = {
sessionid: this._community.getSessionID(),
partner: steamid,
appid,
contextid
};
 
if (start) {
qs.start = start;
}
 
let refererUrl = 'https://steamcommunity.com/tradeoffer/new/?partner=' + steamid;
if (token) {
refererUrl += '&token=' + token;
}

this._community.httpRequest({
method: 'GET',
uri: 'https://steamcommunity.com/tradeoffer/new/partnerinventory/',
qs,
headers: {
Referer: refererUrl
},

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...