PayPal API : How to integrate it in my App? IOS5

我的梦境 提交于 2019-12-29 08:24:29

问题


I have been checking around the PayPal API and got this, a webView displaying a quite nice interface to pay through PayPal, the thing is : I don´t know how to modify it in order to show several items (this sample only involves one) and display them on the app ( if you have used it you may have realized it only says "current purchase" and I think it is not enough ).

I have been using testing accounts as a buyer but in the real life , how can I get the money to my account? I mean , if you see the code, and the app, it says Who pays and relatively how much but it does not say where or to whom.

Please, if somebody knows something about it help me out.

P.D: There is not a good tutorial about it, a shame.

A sample from a PayPal:

(in my ViewController):

(void) loadView {
    [super loadView];

    UIWebView *aWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 00, 320,450)];
    aWebView.scalesPageToFit = YES;
    [aWebView setDelegate:self];

    NSString *item = @"Gum";
    NSInteger amount = 1;

    NSString *itemParameter = @"itemName=";
    itemParameter = [itemParameter stringByAppendingString:item];

    NSString *amountParameter = @"amount=";
    amountParameter = [amountParameter stringByAppendingFormat:@"%d",amount];

    NSString *urlString = @"http://haifa.baluyos.net/dev/PayPal/SetExpressCheckout.php?";
    urlString = [urlString stringByAppendingString:amountParameter];
    urlString = [urlString stringByAppendingString:@"&"];
    urlString = [urlString stringByAppendingString:itemParameter];



    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlString];

    //URL Requst Object
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

    //load the URL into the web view.
    [aWebView loadRequest:requestObj];

    //[self.view addSubview:myLabel];
    [self.view addSubview:aWebView];
    [aWebView release];
}

回答1:


I have integrated PayPal in my app through their MPL library, which I found the most interesting. It seems I did not have a conscious look at the PayPal website ( I still find it pretty confusing though ).

MPL -> Simple Payment App -> Copy&paste -> Modifying it -> WORKS FINE.

if there is someone as lost as I was ( and am ) let know and will post some code.

Thanks



来源:https://stackoverflow.com/questions/8584063/paypal-api-how-to-integrate-it-in-my-app-ios5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!