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 /
  • API and SDK Questions /
avatar image
Question by tomassvedin · Oct 07, 2017 at 10:50 PM ·

Can't get DisplayName using GetPlayerProfileRequest

I'm trying to get the players DisplayName, I don't get any errors but the string is empty even tho I've set one from the Dashboard. What am I doing wrong here?

This is the code I'm using:

using UnityEngine;
using PlayFab.ClientModels;
using PlayFab;
using TMPro;


public class UserLogin : MonoBehaviour {


    [SerializeField] private TMP_InputField username;
    [SerializeField] private TMP_InputField password;


    public void LoginUser()
    {
        string uname = username.text;
        string pwd = password.text;


        var request = new LoginWithEmailAddressRequest
        {
            Email = uname,
            Password = pwd
        };


        PlayFabClientAPI.LoginWithEmailAddress(request, OnLoginSucess, OnFailure);
    }


    private void GetAccountInfo(string PID)
    {
        var request = new GetPlayerProfileRequest
        {
            PlayFabId = PID,
            ProfileConstraints = new PlayerProfileViewConstraints()
            {
                ShowDisplayName = true
            }
        };
        Debug.Log("PlayFabID: " + PID);
        PlayFabClientAPI.GetPlayerProfile(request, OnInfoSuccess, OnFailure);
    }


    void OnInfoSuccess(GetPlayerProfileResult result)
    {
        Debug.Log("Displayname: " + result.PlayerProfile.DisplayName);
    }


    private void OnLoginSucess(LoginResult result)
    {
        Debug.Log("You are logged in! " + result.PlayFabId.ToString());
        GetAccountInfo(result.PlayFabId);
    }




    private void OnFailure(PlayFabError error)
    {
        Debug.LogError("Something went wrong >>\n" + error.ErrorMessage);
    }


}


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 Brendan · Oct 07, 2017 at 10:51 PM

What is the Title ID for this test? Also, can you make sure the items you want to get back in the profile are selected in Settings->Client Profile Options?

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

    1 Person is following this question.

    avatar image

    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