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 Kim Strasser · Oct 29, 2020 at 10:44 AM · CloudScript

How can I find out if the contact email VerificationStatus is confirmed in CloudScript?

I get an error message when I want to find out if the players contact email address is confirmed.

What is wrong with my code?

var playerData = server.GetPlayerProfile( 
		{ 
			"PlayFabId": currentPlayerId, 
			"ProfileConstraints":
			{"ShowContactEmailAddresses":true
			}
		})
		
if (playerData.Error == null)
{ 
	var contactEmailAdresses = playerData.PlayerProfile.ContactEmailAddresses;
	var playeremail = "";
 	var emailVerificationStatus = null;
  	if ((contactEmailAdresses != null) && (contactEmailAdresses.length > 0))
  	{
      		emailVerificationStatus = contactEmailAdresses[0].VerificationStatus;
      	    	if (emailVerificationStatus != null)
      	    	{
      	      		if (emailVerificationStatus == PlayFab.ClientModels.EmailVerificationStatus.Confirmed)
      	        		playeremail = contactEmailAdresses[0].EmailAddress;
      	      		else
      	        		checkemail = "Current contact email is not verified.";
      	    	}
      	    	else
      	     		checkemail = "Current email is not verified.";
        	}
        	else
		  	checkemail = "No valid email found.";
	}
	else
		checkemail = "Error";

Error:

  "Error": {
            "Error": "JavascriptException",
            "Message": "JavascriptException",
            "StackTrace": "ReferenceError: PlayFab is not defined\n    at handlers.CheckContactEmail (E5E2C-main.js:5128:45)\n    at Object.invokeFunction (Script:116:33)"
        }
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 Junjin Chen · Oct 30, 2020 at 06:04 AM

I noticed that in line 19 of your code snippet 1, there is “PlayFab.ClientModels.EmailVerificationStatus.Confirmed”. In CloudScript, the “PlayFab” is not defined as the Error explains. To determine whether the status is confirmed, you could write:

if (emailVerificationStatus == “Confirmed”)

The available Status values can be found in: https://docs.microsoft.com/en-gb/rest/api/playfab/server/account-management/getplayerprofile?view=playfab-rest#emailverificationstatus

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

    3 People are following this question.

    avatar image avatar image avatar image

    Related Questions

    Disable GitHub Integration 2 Answers

    Saving data in Unity on Pause/Quit/Lose Focus 1 Answer

    ailed to import package with error: Couldn't decompress package 1 Answer

    Was the "CloudScript execution API requests issued" limit raised to 15? 1 Answer

    CloudScript execution? 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