-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserAuth.php
57 lines (43 loc) · 1.68 KB
/
userAuth.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/*--------------------------------------------------------\
| Assigned your USER ID & PASSWORD with TOKEN
| This file is included in each of the SAMPLE Example
\--------------------------------------------------------*/
$USERNAME='';
$PASSWORD='';
/*--------------------------------------------------------\
| Create a Lead using the salseforce account
| Get the LEADID and modify it in following file
| userAuth.php in samples directory
\--------------------------------------------------------*/
//Used for sample convertLead from file convertLead.php
$convertLEADID = '00Q7000000JchBt';
//Used for sample fieldsToNull from file fieldsToNull.php
$LEADID = '00Q8000000KusLH';
//Used for sample loginScopeHeader from file loginScopeHeader.php
$LOGINSCOPEHEADER = '00D80000000KUtsEAG';
//Used in sample processSubmitRequest from file processSubmitRequest.php
$OBJECTID1 = '0018000000Lkzfz';
$OBJECTID2 = '0038000000TwXXT';
$NEXTOBJECTID = '00530000000tH4t';
//Used for sending email from file sendEmail.php
$EMAILID = '[email protected]';
//Used for updating object from file update.php
$UPDATEOBJECTID1 = '00Q8000000Kuza7';
$UPDATEOBJECTID2 = '00Q8000000KuzLv';
//Used in callOptions
$YOURCLIENTID = 'YourClientId';
$NAMESPACE = 'aNamespace';
//Used for emailHeader from file emailHeader.php
$EMAILIDFORHEADER = '[email protected]';
/*--------------------------------------------------------\
|
| For Enterprise Samples
|
\--------------------------------------------------------*/
//Need to login on account then create the lead
//Assign that id here and check the sample
$eLEADID = "00Q5000000DO0gJEAT";
//Used for sendemail from file sendemail.php for enterprise
$eEMAILID = '[email protected]';
?>