The ScreenSteps Online Knowledge Base Everything you need to know about ScreenSteps
Blue mango logo white 250
  • Table of Contents
  • Contact Us
ScreenSteps Documentation » ScreenSteps Live Remote Authentication » Creating the Visualforce Page

Topics

  • 1. Remote Authentication 6
    • 1.1 What is Remote Authentication?
    • 1.2 How do I Enable Remote Authentication On My Account?
    • 1.3 SAML Settings
    • 1.4 ScreenSteps Live Remote Auth Settings
    • 1.5 Granting Remotely Authenticated Users Automatic Access to a Space
    • 1.6 How Do I Get Back Into My Account if I Have Accidentally Locked Myself Out?
  • 2. ScreenSteps Live Remote Authentication 2
    • 2.1 How Do I Remotely Authenticate a User using ScreenSteps Live Remote Authentication?
    • 2.2 How Can I Log a User Into ScreenSteps Live Using PHP And ScreenSteps Live Remote Authentication?
  • 3. WordPress Plugin 2
    • 3.1 Installing the WordPress Plugin
    • 3.2 Configuring the WordPress Plugin
  • 4. Using Remote Authentication with Atlassian Crowd 6
    • 4.1 Overview
    • 4.2 Uploading the PHP Scripts
    • 4.3 Adding An Application In Crowd
    • 4.4 Setting Up Remote Authentication in ScreenSteps Live
    • 4.5 Configuring the PHP Script
    • 4.6 Testing
  • 5. Using SAML with OneLogin 1
    • 5.1 Configuring SAML with OneLogin
  • 6. Using SAML with Salesforce.com 3
    • 6.1 Configuring SAML with Salesforce.com
    • 6.2 Generating a self-signed certificate on Salesforce.com
    • 6.3 Authenticating Salesforce users for creating and updating lessons
  • 7. Using ScreenSteps Live Remote Authentication with Salesforce.com 6
    • 7.1 Overview
    • 7.2 Configuring ScreenSteps Live
    • 7.3 Creating the Controller
    • 7.4 Creating the Visualforce Page
    • 7.5 Setting Permissions for the Visualforce Page
    • 7.6 Test: Logging Into ScreenSteps Live with Salesforce Credentials

Quicklinks

  • Downloads
  • View forums
  • Submit a help request
  • Contact us
  • Retrieve a lost license key

Last Updated

Jan 14, 2011

Download Manual PDF

Other Resources

  • ScreenSteps Desktop & Workgroup

  • ScreenSteps 2.9
  • ScreenSteps Workgroup
  • Customizing HTML Templates
  • ScreenSteps: Tips & Tricks
  • Creating Word Templates
  • Publishing to Blogs & Wikis
  • ScreenSteps Live

  • ScreenSteps Live
  • Setting up a New Admin, Editor or Author on ScreenSteps Live
  • ScreenSteps Live Support Client
  • Integrating ScreenSteps Live With Other Services
  • Collaborating on ScreenSteps Live
  • ScreenSteps Live Remote Authentication
  • ScreenSteps Live API
  • API Examples
  • Implementation Guides

  • Creating a Software Manual With ScreenSteps
  • Creating a ScreenSteps Live Support Site
  • Zendesk and ScreenSteps Live
  • Help Scout and ScreenSteps Live
  • FAQs

  • FAQs

Comments

0 comments for this lesson

  • Prev: Creating the Controller
  • Next: Setting Permissions for the Visualforce Page

Creating the Visualforce Page

Now that you have created the Controller you are ready to create the required Visualforce page.

Navigate to Pages Page

Media_1292427009720

Expand the Develop folder and click on Pages.

Create New Page

Media_1292427025992

From the Pages page, click on New to create a new page.

Paste in Page Markup

Media_1292427116699_display Zoom

You can assign the Label to whatever you like but the Name field must be sslive_login (1).

In the markup field (2), paste the text that appears below. Replace MY-SUBDOMAIN with your ScreenSteps Live subdomain.

Click the Save button (3) to save your changes.

<apex:page controller="ScreenStepsLiveRemoteLoginController">

  <h1>Redirecting to ScreenSteps Live...</h1>
  
  <script>   
    var theSSLiveURL = 'http://MY-SUBDOMIN.screenstepslive.com/login/remote/?';
    var theOrganization = escape('');
    
    theSSLiveURL += 'first_name=' + escape('{!$User.FirstName}');
    theSSLiveURL += '&last_name=' + escape('{!$User.LastName}') + '&email=' + escape('{!$User.Email}');
    theSSLiveURL += '&external_id=' + escape('{!$User.Id}') + '&organization=' + theOrganization;
    theSSLiveURL += '&timestamp={!$CurrentPage.parameters.timestamp}' + '&hash={!md5String}';
    theSSLiveURL += '&return_to_url=' + escape('{!$CurrentPage.parameters.return_to_url}');
    
    window.location = theSSLiveURL;
</script>
</apex:page>
  • Prev: Creating the Controller
  • Next: Setting Permissions for the Visualforce Page

Comments (0)

Add your comment

E-Mail me when someone replies to this comment
Blue Mango Learning Systems © 2012