UAPI Functions - Market::get_login_url

Description

This function retrieves the login URL for the cPanel Market provider.

Examples


 cPanel or Webmail Session URL

https://hostname.example.com:2083/cpsess##########/execute/Market/get_login_url?provider=cPStore&url_after_login=http%3A%2F%2Fhostname.example.com%2Fredirectionlocation.cgi%3Fstate

 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
  
// Retrieve login URL for the cPanel Market provider.
$retrieve_url $cpanel->uapi(
    'Market''get_login_url',
    array(
        'provider'         => 'cPStore',
        'url_after_login'  => 'http%3A%2F%2Fhostname.example.com%2Fredirectionlocation.cgi%3Fstate',
    )
);

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
  
# Retrieve login URL for the cPanel Market provider.
my $retrieve_url $cpliveapi->uapi(
    'Market''get_login_url',
    {
        'provider'        => 'cPStore',
        'url_after_login' => 'http%3A%2F%2Fhostname.example.com%2Fredirectionlocation.cgi%3Fstate',
    }
);

 cPanel Template Toolkit

<!-- Retrieve login URL for the cPanel Market provider. -->
[% execute('Market', 'get_login_url', { provider => 'cPStore', url_after_login =>  'http%3A%2F%2Fhostname.example.com%2Fredirectionlocation.cgi%3Fstate'} ) %]

 Command Line

uapi --user=username Market get_login_url provider=cPStore url_after_login=http%3A%2F%2Fhostname.example.com%2Fredirectionlocation.cgi%3Fstate

 

Notes:

  • You must URI-encode values.
  • username represents your account-level username.

 Output (JSON)

   "messages":null,
   "errors":null,
   "status":1,
   "metadata":{ 
      "transformed":1
   },
   "data": "https://192.168.0.1/api/?client_id=MyHearseIsAmazing&function=login&module=bogoSSL&redirect_uri=https%3A%2F%2Fqaportal.cpanel.net%2Fbogus.cgi&response_type=token"
}

 

Note:

Use cPanel's API Shell interface (Home >> Advanced >> API Shell) to directly test cPanel API calls.

 

Parameters

Parameter

Type

Description

Possible values

Example

provider

string

Required

The cPanel Market provider's name.

Any valid provider name.

cPStore

 url_after_login 

 string 

Required

 Where the cPanel Market provider redirects the user's browser after they log in. 

 Any valid URL that includes a query component. 

 http://hostname.example.com/redirectionlocation.cgi?state 

 

Return

 Return 

 Type 

Description

 Possible values 

data

 string 

 The URL to which to redirect the browser after login. 

A valid URL.

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....