○基本URL
不同环境的登陆
https://<实例名>.salesforce.com
如:开发环境,https://test.salesforce.com
前面相同部分省略
例)/home/home.jsp ⇒ https://na7.salesforce.com/home/home.jsp
○常用URL
画面 | URL |
---|---|
home | /home/home.jsp |
所以tab画面 | /home/showAllTabs.jsp |
高级搜索 | /search/AdvancedSearch |
设定画面 | /ui/setup/Setup |
系统日志 | /_ui/common/apex/debug/ApexCSIPage |
帮助画面 | /help/doc/user_ed.jsp |
tab画面 | /<ObjectPrefix>/o (URLFOR($Action.<Object>.Tab) ) |
新建画面 | /<ObjectPrefix>/e (URLFOR($Action.<Object名>.New) ) |
详细画面 | /<RecordID> (URLFOR($Action.<Object名>.View, <RecordID>) ) |
编辑画面 | /<RecordID>/e (URLFOR($Action.<Object名>.Edit, <RecordID>) ) |
Visualforce page | /apex/<Visualforce page名> |
下载文件画面 | https://c.<Instance名>.content.force.com/servlet/servlet.FileDownload?file=<文件ID> |