Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
page_type languages products urlFragment extendedZipContent description
sample
csharp
cpp
cppcx
windows
windows-uwp
Store
path target
SharedContent
SharedContent
path target
LICENSE
LICENSE
Shows how to perform in-app feature or product purchases operations.

Store sample

Shows how to perform in-app feature or product purchases operations and use the licensing API provided by the Microsoft Store to determine the license status of an app or a feature that is enabled by an in-app purchase.

Note: This sample is part of a large collection of UWP feature samples. You can download this sample as a standalone ZIP file from docs.microsoft.com, or you can download the entire collection as a single ZIP file, but be sure to unzip everything to access shared dependencies. For more info on working with the ZIP file, the samples collection, and GitHub, see Get the UWP samples from GitHub. For more samples, see the Samples portal on the Windows Dev Center.

The Microsoft Store supports the following types of in-app purchases:

  • Purchasing the app itself.
  • Purchasing a durable in-app product, meaning that after the purchase, the user owns the product until it (optionally) expires. For example, a new game level is typically a durable in-app product.
  • Purchasing a consumable in-app product, meaning that the user can purchase it multiple times. For example, a game power-up is typically a consumable in-app product. The act of confirming that the user received the consumable product is known as "fulfillment".

The sample app demonstrates the following tasks.

  • Check the current license status of an app.
  • Check the expiration date of an app trial period.
  • Check if an in-app product has been purchased through an in-app purchase.
  • Perform an in-app purchase to buy the app.
  • Perform an in-app purchase to buy an in-app product.
  • Confirm the fulfillment of an in-app consumable product.
  • Perform an in-app purchase transaction using the Microsoft Store commerce platform.
  • Launch the Microsoft Store page for the app, so users can purchase the app or write a review.
  • Generate a business to business (B2B) token that can be used to query or add to a user's collection.

Setup Instructions

Before running this sample, you must associate it with an app in the Microsoft Store.

  1. Register as an app developer.
  2. Follow the instructions in Testing apps that use the Windows.Services.Store namespace.

Additional Setup Instructions for Business to Business Scenario

These steps are necessary only if you want to run the code in the Business to Business Scenario, which requires application and Azure configuration.

  1. You must have a real application available for download from the Microsoft Store. This can be a private application.
  2. Download a copy of your application from the Microsoft Store to get a valid license.
  3. Associate this test application with this application in the Microsoft Store.
  4. Deploy this application to your machine and overwrite the existing application.
  5. Setup your application following the instructions under the Adding an Application section at Integrating Applications with Azure Active Directory.
  6. Replace the provided value of "tenantId" with your actual tenant ID for your Azure account.
  7. Replace the provided value of "clientId" with the actual value of your native application created in Azure.
  8. Replace the provided value of "clientSecret" with the actual value for your Azure account.
  9. Replace the provided value of "appIdUri" with the actual value of your Azure application.

Note The Windows universal samples require Visual Studio to build and Windows 10 to execute.

To obtain information about Windows 10, go to Windows 10

To obtain information about Microsoft Visual Studio and the tools for developing Windows apps, go to Visual Studio

Related topics

Reference

Windows.Services.Store namespace
Monetization, customer engagement, and Microsoft Store services

Related samples

System requirements

  • Windows 10 build 14393 or higher

Build the sample

  1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
  2. Start Microsoft Visual Studio and select File > Open > Project/Solution.
  3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio Solution (.sln) file.
  4. Press Ctrl+Shift+B, or select Build > Build Solution.

Run the sample

The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.

Deploying the sample

  • Select Build > Deploy Solution.

Deploying and running the sample on a Windows 10 Desktop

  • To debug the sample and then run it, press F5 or use Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or use Debug > Start Without Debugging.

Deploying and running the sample on a Windows 10 Phone

  • To debug the sample and then run it, press F5 or use Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or use Debug > Start Without Debugging.