【Ecstore2.0】第三方信任登陸問題解決_備忘

智慧物聯發表於2014-04-25

ECSTORE2.0的信任登陸模組開啟後,需要拿著授過權的ID在官網進行配置才可以使用,但是客戶的授權證照一時無法使用,而跳過認證的話功能又用不了,所以就自己臨時搭了一個測試用的認證伺服器和信任登陸平臺,測試完畢,伺服器已被肢解。

1、appopenidlibinterfacepassport.php

    function __construct(){
        $this->url = SITE_API; //自己搭的信任登陸平臺@chn.vmax@gmail.com 原地址:`http://www.ecopen.cn/api/`
        $this->cert_id = base_certificate::get(`certificate_id`);
    }

2、appopenidlibdenglu.php

class openid_denglu{

    var $commit_url = SITE_API; //自己搭的信任登陸平臺@chn.vmax@gmail.com 原地址:http://www.ecopen.cn/api/`
    var $webtype = `3`;

    function __construct(){
        $this->license_id = base_certificate::get(`certificate_id`);
        $this->license_key = base_certificate::get(`token`);
        $this->entid = base_enterprise::ent_id();
    }

SITE_API 是我自已搭的第三方信任登陸託管伺服器,可以單獨設定登陸介面帳號,也可以使用公共帳號。


相關文章