PayPal Integration in an iPhone App [duplicate] - iphone

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Has anyone implemented the PayPal API through a native iPhone app?
May be I am repeating this question but I do not have any idea about this.I want to integrate PayPal into my iPhone native app. Please help me regarding :-
How do I integrate PayPal in my iPhone App?
How to go from a scratch ?
Are there some good tutorials available on internet ? What are they ?
Regards!!

You could do it using Mobile Express Checkout. All the info, here. Its very easy to integrate within your app. You will need a server side app though to make some of the Paypal calls, as it would not be safe to make them from the phone.

Related

Apple rejected my app as my app doesn't have FB login via Apple SDK [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
I'm building a simple iPhone app with my developer. The main purpose of the app is to simply open my site on its mobile browser. In my site there are two log in options:1. Login via Google and 2. log in via Facebook.
But when my developer went to register this on istore the app has been rejected.
Here is what I received from my developer:
"As per Apple’s guidelines the app should offer features which should provide some interaction with the iOS device like your website offer login using Facebook which should actually be using iOS’s own FB login. Further the website offers searching for contacts, so we can have something like saving those contacts on device memory.
However, all these changes will involve efforts which need planning and are also not small tweak which can be made today and resubmit the app. "
So he is asking me to include log in via FB using APPle SDK otherwise my app can not be submitted.
Can anybody help me to solve this issue?
Thanks
Apple's AppStore Review Guidelines include the following:
Apps that are not very useful, unique, are simply web sites bundled as
Apps, or do not provide any lasting entertainment value may be
rejected
As I understand it from your description, your app simply shows your website. You should think about some additional features that could be integrated. One that apple seems to have included in your rejection might be a "native login" using the Facebook SDK for iOS.

credit card payment process integration in iphone [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
iOS - Integrating credit card payments
I want to make a application in which the payment is been done one user swap the card in the external card reader(iMag,iDynamo,Square) attached with the device(iphone,ipad etc)
Is there any sdk available or is there any way or sample code which gives some guideline to integrate such hardware with the application.
Please help me.
Thanks in advance
Have a look at
Android: How to read Magnetic Stripe(credit cards, etc) Data
https://discussions.apple.com/thread/4056057?start=0&tstart=0

Can I get Analytics for iPhone application like google Analytics? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Best analytics offering for iPhone
How to track iphone application?
how to get Analytics working for an iPhone application ?
I suggest you to carefully read the developer agreement before doing any tracking or your app could be rejected: Apple looks finally paying some serious attention to privicy...
Flurry is my choice. So far I also tried Google Analytics and Bango Mobile Analytics and none of them was as good as Flurry.
i suggest to use Localytics which is better than Flurry,google analytics.it is open source also.

Best way to do Payment integration in Mobile Platform? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Today's world is mostly converted to mobile platform from the desktp platform and most of the payment trasaction, purchase and ecommerce facilities available via mobile applicaitons.
So, What is the best way to do payment integration in mobile application specially in iPhone, iPad, Android, Blackberry and Windows platform? There are plenty of third party API available out there but which one is the secure method to do paymaent gateway for mobile application development.
(1) For iOS platform we have inApp Purchase but it takes almost 30% to the apple and owner will get only 70% of the payment. Still there are some limitations are there as we can't provide the physical goods and services via inApp Purchase.
(2) Paypal is the secure method of payment gateway and it is also implemented in many of the mobile applications.
(3) Direct credit card payment option is also great one to use.
(4) There are many third party APIs available out there.
So, Here for mobile application development which is the best method to use specially for iOS platform like iPhone and iPad application that can be easily approved by apple without any problem.
We have two APIs for payment integration with iOS apps. The first uses app to app integration where transaction data is sent from the developer's app to our payment app. The other API allows developers to seamlessly integrate our payment app functionality into their app. Both APIs allow for easy approval by Apple and removal of the PCI-DSS compliance burden. For more info you can start here: http://developers.moblized.com/.
Update: We'll have similar APIs for Android by April 15, 2012.
If you have in app purchases, they HAVE to use Apple's API or else your app will be rejected.
The only way to (sort of) get around it is to have the purchase be on a website and it will unlock something on your app. You can't link to the website from your app though so it's kind of useless if you don't already have users visiting your website. This is how the Kindle app does it since Apple forced the use of their in-app purchase API.

developing sms application in iPhone? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to programmatically send SMS on the iPhone?
i am new to iPhone programming and i was thinking of developing an sms application through which user can send and receive sms inside my application similar to iPhone own message application.i think apple doesn't provide any API regarding accessing sms inbox?? is there any other way around it??
I'm afraid this is not possible through the default iPhone SDK.
You have two possibilities:
Create an application through Open Tool Chain. I'm not very experienced with this kind of developement, but I think it should be possible to access the SMS inbox etc from outside. Drawback: Only jailbroken phones, no App Store...
Create your own service that sends SMS via, for example, a server. You could use Push notifications or something to indicate when new messages has arrived. You should however be aware of, and read up on, Apple's guidelines regarding applications that imitate functionality of built in core applications.
Have a look at the list of new features in iPhone OS 4 ("In-App SMS").
Can't help you regarding the actual API and what its limitations are, though.