分类目录

链接

2018 年 4 月
 1
2345678
9101112131415
16171819202122
23242526272829
30  

近期文章

热门标签

新人福利,免费薅羊毛

salesforce开发利器:metaforce下载

谷歌app下载地址:https://chrome.google.com/webstore/detail/metaforce/hhnkaakhlhngcdckdiogpkjihnmgodep 本地下载:Metaforce 3.1.2.5_0  (本人从谷歌下载后,上传到了自己的博客供大家下载) 先看下效果图:  

Salesforce 暂无评论 阅读(627)

salesforce rest api test class

上一篇文章(salesforce rest api demo)我们写到salesforce如何写rest api,这篇我们将写如何写test class @isTest(SeeAllData=true) public class Api_user_profileTest {     static testMethod void Api_user_profileTest()     {         system.debug('start...');         Test.startTest();         String ReturnCode = '';         RestContext.request = new RestRequest();         RestContext.response = new RestResponse();         RestContext.request.requestURI = '/services/apexrest/user/p...

Salesforce 暂无评论 阅读(563)

salesforce rest api demo

// //api getPersonBasicInformation //by bruce he @RestResource(urlMapping='/user/profile/*')   global with sharing class Api_user_profile{                 @HttpGet       global static void getPersonBasicInformation() {                    RestResponse res = RestContext.response;            res.addHeader('Content-Type', 'application/json');                  //return result obj         PersonBasicInformation model = new PersonBasicInformation();                  try{       ...

Salesforce 暂无评论 阅读(516)