简体   繁体   中英

Paypal sdk for windows phone 8.1

I am currently working with windows phone 8.1[RT] c# application. Is there any paypal sdk available for windows phone 8.1 . I have checked windows8phonesdk which is not available for windows phone 8.1.

If sdk is not available then how to integrate paypal in windows phone 8.1

Well the paypal API has a rest interface: https://developer.paypal.com/docs/api/

So you can always just make calls using plain GET / POST request or as I suggest using RestSharp ( http://restsharp.org/ )

A simple example would be (without credentials):

var client = new RestClient("https://api.paypal.com/v1/payments/orders/order-id");
var request = new RestRequest(Method.GET);
request.AddHeader("cache-control", "no-cache");
IRestResponse response = client.Execute(request);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM