• Frank van der Voort
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
In the Salesforce1 Security and Compliance module, I am getting an error that I think is related to the name change of Salesforce1. 
Page: 
https://trailhead.salesforce.com/modules/salesforce1_security/units/salesforce1_security_connected_app 

Challenge Not yet complete... here's what's wrong: 
Could not find the 'Salesforce1 for Android' Connected App with the specified settings.

The Cennected App that is created is now called:  
Salesforce for Android

I double-checked my Connected App settings and believe they are correct, so I'd like to know if Trailhead is incorrectly looking for the wrong Connected App name. 

Thanks, 
Ryan 

I am trying to pass a variable from <apex:inputText>  in through a Flow. I am new to VisualForce pages so please excuse my ignorance.

 

I have attached the code below for the controller and VisualForce page.

 

VF Page

 

<apex:page controller="testController">
    <apex:form>
        <apex:inputText value="{!inputValue}" id="textInput" />
        <apex:commandButton action="{!actionMethod}" reRender="myFlow" value="GO"/>
    </apex:form>
    
    <apex:variable var="input" value="Hello1" />
    <flow:interview name="testFlow" id="myFlow">
        <apex:param name="inputFromVF" value="{!inputValue}" />
        <apex:outputText value="{!inputValue}" />
    </flow:interview>
</apex:page>

 

Apex Class

public class testController{

    public Flow.Interview.testFlow myFlow {get; set;}
    public testController() {

    public PageReference actionMethod() {
        return null;
    }


    public String inputValue { get; set; }

}

 

Any help would be greatly appreciated.