2

I have a website that provides a specific SW service.

I would like to allow users to subscribe to this SW service:

  1. Sign-Up: the user provides credit card details, a username and a password.

  2. Sign-In: the user enters username+password in order to get access to my SW service.

The user's credit card should be charged once per month (i.e., recurring payment).

I'm considering Google Wallet for this purpose, but there are a couple of issues that I'm concerned about:

  1. Can I use the Google Wallet API in order to implement sign-up and sign-in, or should I implement user-authentication separately within my server?

  2. Is the Google Wallet API available only for mobile devices? This is implied in both Google Wallet's website and in Wikipedia. My website is primarily intended for use through desktop PCs, and not through smartphones.

Thank you for your help!

4

1 回答 1

3

对于注册/登录部分,如果您想使用 Google 的 OAuth 服务,您可以在Google+ Sign-In尝试。

对于经常性支付部分,Google Wallet for digital goods API提供每月订阅 API 和基于网络的支付流程。如果用户的电子钱包中还没有保存信用卡,他们只会被提示一次添加卡。

于 2013-08-29T16:27:36.347 回答