• William Wyatt
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Hi,

We are having issues with transferring user from our app to Salesforce1 app. We are trying to open record created in our app with SF1. In iOS platform we got it working by calling this: 
com.salesforce.salesforce1://sObject/#recordid#/view
Replace: #recordid# with object id.
Same doesn't work on Android. Neither does the the version you have documented here:
http://help.salesforce.com/HTViewSolution?id=000213748
or here:
https://resources.docs.salesforce.com/sfdc/pdf/salesforce1_url_schemes.pdf

Anyone got these to work on Android?
I'm trying to access chatter in visualforce using iframe in customer portal.
Reason why I'm not using the default chatter tab is because I'm adding some custom styling in visualforce and I also don't want to see the sidebar and header.
The iframe works under force.com but when trying to access through community it throws an error page

<apex:page sidebar="false" showHeader="false" standardStylesheets="true" doctype="html-5.0">
    
        <apex:pageBlock >
           <apex:iframe id="iframe" src="/_ui/core/chatter/ui/ChatterPage?isdtp=vw" 
                        scrolling="true" width="100%" height="500px"/> 
        </apex:pageBlock>
        
</apex:page>

Can somebody help me understand why it does not display in community?