Microsoft Azure PlayFab logo
    • Multiplayer
    • LiveOps
    • Data & Analytics
    • Add-ons
    • For Any Role

      • Engineer
      • Designer
      • Executive
      • Marketer
    • For Any Stage

      • Build
      • Improve
      • Grow
    • For Any Size

      • Solo
      • Indie
      • AAA
  • Runs on PlayFab
  • Pricing
    • Blog
    • Forums
    • Contact us
  • Sign up
  • Sign in
  • Ask a question
  • Spaces
    • PlayStream
    • Feature Requests
    • Add-on Marketplace
    • Bugs
    • API and SDK Questions
    • General Discussion
    • LiveOps
    • Topics
    • Questions
    • Articles
    • Ideas
    • Users
    • Badges
  • Home /
  • General Discussion /
avatar image
Question by Grant McNamara · Nov 01, 2021 at 02:17 AM · Player DatadataPlayer Inventory

How do i get the player inventory from javascript?

I have spent hours trying to get data from my players inventory but i cant seen to figure out how to get it to work right. all it does is say undefined

                  function inv()          {            // save these values locally to ease use            // save title id            // build http request object for LoginWithCustomId                   var GetUserInventoryRequest = {};            OutputStatus("Logging in...");            PlayFabClientSDK.GetUserInventory(GetUserInventoryRequest, (response, error) => {                if(error)                {                  OutputError(error);                }                 else                {                  // display account details                  var result = response.data;                  var inv = result.Inventory                  var status = inv.ItemId;                  OutputStatus(status);                }            });          }; 
Comment

People who like this

0 Show 0
10 |1200 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by Made Wang · Nov 02, 2021 at 03:06 AM

The callback value Inventory of the GetUserInventory method is an array, even if there is only one data inside. I modified your code, you can use the following code and refer to the api document for testing.

function inv()
{
    // save these values locally to ease use
    // save title id            
    // build http request object for LoginWithCustomId                   
    var GetUserInventoryRequest = {};            
    OutputStatus("Logging in...");            
    PlayFabClientSDK.GetUserInventory(GetUserInventoryRequest,
        (response, error) => 
        {                
            if(error)                
            {                  
                OutputError(error);
            }                 
            else                
            {                  

                // display account details                  
                //var result = response.data;                  
                //var inv = result.Inventory;                 
                //var status = inv.ItemId;                  
                //OutputStatus(status); 
                

                var result = response.data;             
                var inv = result.Inventory;
                for(var i=0;i<inv.length;i++)
                {
                    var status=inv[i].ItemId;
                    OutputStatus(status);
                }

            }            
        });          
}

Comment

People who like this

0 Show 0 · Share
10 |1200 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Navigation

Spaces
  • General Discussion
  • API and SDK Questions
  • Feature Requests
  • PlayStream
  • Bugs
  • Add-on Marketplace
  • LiveOps
  • Follow this Question

    Answers Answers and Comments

    2 People are following this question.

    avatar image avatar image

    Related Questions

    Playfab Player Data Fields ? 1 Answer

    Setting player data through ue4 blueprints 1 Answer

    Does playfab have features allow user to store user's profile data in a database? 1 Answer

    Storing custom game data specific to a player (card game example),Inventory management data structure in a card like game 1 Answer

    Where/How to save players personal data? 1 Answer

    PlayFab

    • Multiplayer
    • LiveOps
    • Data & Analytics
    • Runs on PlayFab
    • Pricing

    Solutions

    • For Any Role

      • Engineer
      • Designer
      • Executive
      • Marketer
    • For Any Stage

      • Build
      • Improve
      • Grow
    • For Any Size

      • Solo
      • Indie
      • AAA

    Engineers

    • Documentation
    • Quickstarts
    • API Reference
    • SDKs
    • Usage Limits

    Resources

    • Forums
    • Contact us
    • Blog
    • Service Health
    • Terms of Service
    • Attribution

    Follow us

    • Facebook
    • Twitter
    • LinkedIn
    • YouTube
    • Sitemap
    • Contact Microsoft
    • Privacy & cookies
    • Terms of use
    • Trademarks
    • Safety & eco
    • About our ads
    • © Microsoft 2020
    • Anonymous
    • Sign in
    • Create
    • Ask a question
    • Create an article
    • Post an idea
    • Spaces
    • PlayStream
    • Feature Requests
    • Add-on Marketplace
    • Bugs
    • API and SDK Questions
    • General Discussion
    • LiveOps
    • Explore
    • Topics
    • Questions
    • Articles
    • Ideas
    • Users
    • Badges