Social networking sites, personalization aesthetics and increased user interactions and expectations has changed the way website and portals are developed.
One of the requirement often comes to SharePoint developers is to show user's profile picture on site/portal's home page or preferably in the site's header. SharePoint stores user related information in user's My Site but fetching the information from My Site and displaying it on other portal's pages could be a challenge.
SharePoint REST API allows us to easily fetch all user profile related information and display it anywhere we want in the sharepoint portal.
Below code snippet fetches the user's profile pic URL from user profile properties and assign it to a hyperlink tag on the page.
html to display profile pic as a background of a hyperlink.
One of the requirement often comes to SharePoint developers is to show user's profile picture on site/portal's home page or preferably in the site's header. SharePoint stores user related information in user's My Site but fetching the information from My Site and displaying it on other portal's pages could be a challenge.
SharePoint REST API allows us to easily fetch all user profile related information and display it anywhere we want in the sharepoint portal.
Below code snippet fetches the user's profile pic URL from user profile properties and assign it to a hyperlink tag on the page.
html to display profile pic as a background of a hyperlink.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="../Style Library/Scripts/JQuery/jquery.min.js"></script> | |
<script type="text/javascript" src="../Style Library/Scripts/profile.js"></script> | |
</head> | |
<body> | |
<div id="header-right-avatar"> | |
<a Id="avatar-image" href="#"></a> | |
</div> | |
</body> | |
</html> |
Profile.js Javascript code to fetch profile pic url using Rest API and JQuery.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*File Name: profile.js | |
Desription: This JS file will handle loading of Profile Pic from User profile properties and diplay in the page header. | |
Dated: 02 Feb 2016 | |
*/ | |
$(document).ready(function () { | |
FetchAndDisplayProfilePic() | |
}); | |
function FetchAndDisplayProfilePic() { | |
var getUserProfilePicURL = _spPageContextInfo.webAbsoluteUrl + "/_api/SP.UserProfiles.PeopleManager/GetMyProperties/PictureUrl"; | |
$.ajax({ | |
url: getUserProfilePicURL, | |
type: "GET", | |
headers: { | |
"accept": "application/json;odata=verbose", | |
}, | |
success: function (data) { | |
var userPicUrl = data.d.PictureUrl; | |
console.log("PictureURL: " + userPicUrl); | |
$("#avatar-image").css("background-image", "url(" + userPicUrl + ")"); | |
}, | |
error: function (error) { | |
console.log("Exception[FileName: profile.js; Function: FetchAndDisplayProfilePic] Details: " + JSON.stringify(error)); | |
} | |
}); | |
} |