• SandeepKChopra
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
I am trying to display the linkedin profile image of a contact (linkedin authentication already done) on a visualforce page using PhotoUrl field of contact mentioned here (https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_contact.htm).

While on the salesforce Contact detail page the image is getting displayed but its not showing up on my custom VF page. If I link facebook or Twitter, those profile images are showing up fine in my VF page.

Even though the linkedin module is labelled Beta, I just wanted to check if anybody else is also getting this issue or if there is something that I am not doing correctly.

The sample page is

<apex:page standardController="Contact" recordSetVar="contacts">
    <apex:pageBlock >
        <apex:pageBlockTable value="{!contacts}" var="ct">
            <apex:column headerValue="Name">
                {!ct.FirstName} {!ct.LastName}
            </apex:column>
            <apex:column headerValue="Photo">
                <img src="{!ct.PhotoUrl}" />
            </apex:column>        
        </apex:pageBlockTable>
    </apex:pageBlock>
</apex:page>
We have a fairly large salesforce product with a large code base. We are going to hit the code limit of 3,000,000 characters very soon. I have read in forums that salesforce can increase the limit if we can justify the need for increased limit. 

But my question is that will salesforce increase the limit for only the packaging org (created via the partner portal) which we use for packaging and uploading our package, or can we ask for increase in code limit for multiple orgs.

I am asking this because all our developers work in their separate orgs and checking in code in a common repository. From there the code is pulled into the main packaging org and finally the package is built.

Thanks in advance
We have a fairly large salesforce product with a large code base. We are going to hit the code limit of 3,000,000 characters very soon. I have read in forums that salesforce can increase the limit if we can justify the need for increased limit. 

But my question is that will salesforce increase the limit for only the packaging org (created via the partner portal) which we use for packaging and uploading our package, or can we ask for increase in code limit for multiple orgs.

I am asking this because all our developers work in their separate orgs and checking in code in a common repository. From there the code is pulled into the main packaging org and finally the package is built.

Thanks in advance