Author: Jitendra
-
Login to Lightning enabled Salesforce instance using SessionId
If you have session Id, then you could login to Salesforce directly using below URL hack : https://[intance].salesforce.com/secur/frontdoor.jsp?sid=[sessionId] on above URL, you have to replace [instance] by actual salesforce instance name and [sessionId] by actual sessionId of user. In same way, we can directly login to portals or communities using below URL hack https://[instance].salesforce.com/secur/frontdoor.jsp?sid=[sessionid]&orgId=[orgId]&portalId=[portalOrCommunityId] I…
-
Salesforce to Salesforce integration using Canvas
After writing this article Salesforce has enabled CSP (Content Security Policy) which restricts adding Salesforce in iFrame. We can add MyDomain URL as CSP whitelisting and it works only if user already logged into other Salesforce instance. However, if user is not logged into other instance , internally OAuth navigates through login.salesforce.com which is too…
-
Dreamforce 2015 – My Sessions – Add in your Agenda builder
Dreamforce 2015 sessions presented by Jitendra Zaa for Salesforce
-
Salesforce Lightning Component – Radar Chart
How to create Radar chart using Lightning Component in Salesforce with the help of Chart.js library
-
Event Monitoring and Trailhead
This is one of most awaited functionality provided by Salesforce platform recently. In many projects, we were getting request from clients on different kind of auditing reports like “most used functionality by users, who is exporting reports, API call usage, link clicks” etc. Event monitoring tool helps to provide many information related to auditing reports. We…
-
Fix Git errors : Permission denied , Cannot spawn , No supported authentication methods available
Recently, I came across few errors of Git and found very time consuming to fix those. Let’s discuss what are those errors and how we can fix it. Error : Permission denied (publickey). fatal : could not read from remote repository This error came while trying to push changes to remote repository using ssh keys.…
-
List of IDE available for Salesforce coding
List of all major IDE like Eclipse, Welkins, Cloud9 etc to code Apex, Visualforce, Trigger and lightning components in Salesforce
-
using cURL with Salesforce Rest API
Workbench is one of widely used tool in Salesforce when it comes to exploring REST API of Salesforce. However I wanted to export REST API response in Binary format and therefore used cURL. cURL is open source command line library mostly used to test http request. It can be downloaded from here and official documentation about how to use…
-
Barcode scanner component in Salesforce lightning – Video
Recording of Live code – Creating Barcode decoder component using Javascripyt library in Salesforce Lightning
-
Javascript based Barcode decoder in Salesforce1 – Very fast and Simple
Very fast and Simple Barcode decoder in Salesforce1 using quaggaJS javascript library