Query for username in Salesforce iOS SDK

前端 未结 5 1235
生来不讨喜
生来不讨喜 2021-01-22 16:27

I have an iOS app using the latest Salesforce iOS SDK. It authenticates users through a webview using oAuth2.0 on the Salesforce site so I do not capture the username in my app

5条回答
  •  后悔当初
    2021-01-22 16:45

    I have no idea whether you use REST or SOAP API...

    For REST there's an excellent article by metadaddy: http://wiki.developerforce.com/page/Digging_Deeper_into_OAuth_2.0_at_Salesforce.com#The_Force.com_Identity_Service

    Identity Service link is in format of /id/(organization id)/(user id), scroll up in this blog post a bit to find out when you should expect it.

    Workbench

    SOAP API, offers getUserInfo() method (it returns an object similar to Apex UserInfo class). Just click the first link there to see the full list of methods you can call.

提交回复
热议问题