-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
41 lines (31 loc) · 884 Bytes
/
settings.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
<?php
//Configuration Options
//Full name is hack job to check that no one else can load their LinkedIn profile into your website
//Password is used to authenticate yourself when updating your XML file.
$fullnamelinkedin = "FULL NAME";
$password = "PASSWORD";
//Website URL
$baseurl = "http://example.com";
//Information to pull in from LinkedIn
$skills = True;
$positions = True;
$courses = True;
$summary = True;
$organizations = False;
$interests = False;
$certifications = True;
$picture = True;
$full_name = True;
$email = True;
$phone_numbers = False;
//xmlfile to store resume information
$xmlfile = "profile.xml";
//----------------------
//LinkedIn API Settings
//-----------------------
//API Keys
define("CONSUMER_KEY", "KEY");
define("CONSUMER_SECRET", "SECRET");
//Permission Scope Requested
$scope = "r_fullprofile+r_basicprofile+r_network+r_contactinfo";
?>