How to integrate Salesforce into iphone application?

can someone help me integrate salesforce in my application. I made an account in the sales department and also created a remote access key. Someone can tell how to advertise objects, dashboards, etc. in the iPhone app. I also want to know how to access salesforce data. for example, I want to get all user objects in salesforce, and also want to create user objects from an iPhone application. Can anyone guide me in this regard. Any help is appreciated.

+4
source share
2 answers

There are many ways to do this. I advise you to carefully read and choose the best way to do this.

Here are some links to read about it:

Collaboration between Salesforce and PayPal

SDK project

Good documentation and code

+2
source

Salesforce provides mobile SDKs for iPhone, Android, and hybrid platforms. This SDK has examples of where to start. There are many documents available.

Basically, the SDK helps authenticate using Salesforce using oAuth, exchanging data with objects using RestKit.

Use the following URLs to get started.

Download the mobile SDK from the following URL. https://github.com/forcedotcom/SalesforceMobileSDK-iOS

There is a discussion forum http://boards.developerforce.com/t5/Mobile/bd-p/mobile

API Documents http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html

Ref: http://wiki.developerforce.com/page/Mobile_SDK

0
source

Source: https://habr.com/ru/post/1445451/


All Articles