21 lines
608 B
PHP
Executable File
21 lines
608 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lock
|
|
* Date: 2020/8/22
|
|
* Time: 2:00 PM
|
|
*/
|
|
|
|
namespace app\common\lazada\lazop;
|
|
|
|
|
|
class UrlConstants
|
|
{
|
|
static $api_gateway_url_sg = "https://api.lazada.sg/rest";
|
|
static $api_gateway_url_my = "https://api.lazada.com.my/rest";
|
|
static $api_gateway_url_vn = "https://api.lazada.vn/rest";
|
|
static $api_gateway_url_th = "https://api.lazada.co.th/rest";
|
|
static $api_gateway_url_ph = "https://api.lazada.com.ph/rest";
|
|
static $api_gateway_url_id = "https://api.lazada.co.id/rest";
|
|
static $api_authorization_url = "https://auth.lazada.com/rest";
|
|
} |