-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Readme testTitleData.json update * https://api.playfab.com/releaseNotes#160523 (#56) * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins * Automated build from Jenkins
- Loading branch information
Paul Gilmore
committed
May 24, 2016
1 parent
ac5be38
commit 33ab71a
Showing
5 changed files
with
41 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,36 @@ To connect to the PlayFab service, your machine must be running TLS v1.2 or bett | |
* [Official Microsoft Documentation](https://msdn.microsoft.com/en-us/library/windows/desktop/aa380516%28v=vs.85%29.aspx) | ||
* [Support for SSL/TLS protocols on Windows](http://blogs.msdn.com/b/kaushal/archive/2011/10/02/support-for-ssl-tls-protocols-on-windows.aspx) | ||
|
||
3. Troubleshooting: | ||
|
||
3. Example Project: PlayFabApiTest.html & PlayFabApiTest.js: | ||
---- | ||
|
||
These files are an internal PlayFab testing project, which activates and tests the core functionality of the sdk. They are not part of the sdk. You should delete these two files before integrating the sdk with your project. | ||
|
||
They require a testTitleData.json file to exist, which is described below. | ||
|
||
|
||
4. testTitleData.json file required for example test files. | ||
---- | ||
|
||
This sdk includes an optional example project that is used by PlayFab to verify sdk features are fully functional. The testTitleData.json file provides your secret title information to the unit-test project, so it can execute tests in your own PlayFab title. | ||
|
||
The format is as follows: | ||
|
||
{ | ||
"titleId": "your Game Title ID, found in the settings/credentials section of your dashboard on the website", | ||
"developerSecretKey": "your PlayFab API Secret Key, found in the settings/credentials section of your dashboard on the website - NEVER SHARE THIS KEY WITH PLAYERS", | ||
"titleCanUpdateSettings": "false", // "true" or "false", based on your Allow Client to Post Player Statistics option, found in the settings/general section of your dashboard on the website | ||
"userName": "testUser", // Arbitrary username, you can change this to any valid username | ||
"userEmail": "[email protected]", // This email address will be bound to the username above | ||
"userPassword": "testPassword", // This must be the correct password for the testUser above (if that user does not exist yet, this will be the new password) | ||
"characterName": "testCharacter" // Arbitrary characterName, you can change this to any valid characterName | ||
} | ||
|
||
This file must be created and placed in the root of the sdk (beside PlayFabApiTest.html & PlayFabApiTest.js), and must be named "testTitleData.json" | ||
|
||
|
||
5. Troubleshooting: | ||
---- | ||
For a complete list of available APIs, check out the [online documentation](http://api.playfab.com/Documentation/). | ||
|
||
|
@@ -27,11 +56,10 @@ Our Developer Success Team can assist with answering any questions as well as pr | |
[Forums, Support and Knowledge Base](https://community.playfab.com/hc/en-us) | ||
|
||
|
||
4. Copyright and Licensing Information: | ||
6. Copyright and Licensing Information: | ||
---- | ||
Apache License -- | ||
Version 2.0, January 2004 | ||
http://www.apache.org/licenses/ | ||
|
||
Full details available within the LICENSE file. | ||
|