Enabling wallet payment by face recognition
(Galazzo -) |
m (Galazzo -) |
||
| Line 1: | Line 1: | ||
[[Category:Draft]] | [[Category:Draft]] | ||
| − | {{Abstract|This article, the second of a series based on DSP project and focused on face recognition, shows step by step how to implement a way to process wallet payment authorization.}} | + | {{Abstract|This article, the second of a series based on [http://projects.developer.nokia.com/DSP/wiki DSP project] and focused on face recognition, shows step by step how to implement a way to process wallet payment authorization.}} |
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
|sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| Line 35: | Line 35: | ||
Deals are useful to manage coupons, loyalty cards, Payment instrument manage a balance on an account maintained by your backend. | Deals are useful to manage coupons, loyalty cards, Payment instrument manage a balance on an account maintained by your backend. | ||
| − | + | == Required capabilities == | |
| + | In order to use Wallet API in Windows Phone 8 you need to specify in the WMAppManifest.xml the following reqiored capabilities otherwise your app might not work correctly or it might fail the process of submission to the Store.<br /> | ||
| + | {| class="wikitable" | ||
| + | |- | ||
| + | ! Capability !! API that requires this capability | ||
| + | |- | ||
| + | | {{Icode|ID_CAP_WALLET}} || Required for all Wallet API, which is anything in Microsoft.Phone.Wallet or Microsoft.Phone.SecureElement. | ||
| + | |- | ||
| + | | {{Icode|ID_CAP_WALLET_PAYMENTINSTRUMENTS}} || Required for PaymentInstrument and OnlinePaymentInstrument. | ||
| + | |- | ||
| + | | {{Icode|ID_CAP_WALLET_SECUREELEMENT}} || Required for SecureElementSession, SecureElementChannel and SecureElementReader. | ||
| + | |} | ||
== Summary == | == Summary == | ||
Revision as of 11:26, 11 December 2012
This article, the second of a series based on DSP project and focused on face recognition, shows step by step how to implement a way to process wallet payment authorization.
Introduction
A new interesting feature of Windows Phone 8 is certainly the Wallet and Deals APIs which allows users to do the following:
- Collect coupons, credit cards, memberships, loyalty cards, and more in one place.
- Manage the payment instruments that they use in the app and music store.
- Link items in the Wallet to apps on their phone.
- Make contactless transactions, using Near-Field Communication (NFC), in some markets.
The Wallet API offers full programmatic access to the Wallet. It allows you to create, read, update, and delete Wallet items to implement Deals or Payments.
Deals are useful to manage coupons, loyalty cards, Payment instrument manage a balance on an account maintained by your backend.
Required capabilities
In order to use Wallet API in Windows Phone 8 you need to specify in the WMAppManifest.xml the following reqiored capabilities otherwise your app might not work correctly or it might fail the process of submission to the Store.
| Capability | API that requires this capability |
|---|---|
| ID_CAP_WALLET | Required for all Wallet API, which is anything in Microsoft.Phone.Wallet or Microsoft.Phone.SecureElement. |
| ID_CAP_WALLET_PAYMENTINSTRUMENTS | Required for PaymentInstrument and OnlinePaymentInstrument. |
| ID_CAP_WALLET_SECUREELEMENT | Required for SecureElementSession, SecureElementChannel and SecureElementReader. |

