草庐IT

android - 在 phonegap 应用程序上使用 Twitter 登录

coder 2023-12-27 原文

我正在尝试在我的 cordova 应用程序中使用 twitter 帐户实现登录操作。 我找到了一个使用 Childbrowser.js 文件来执行此操作的脚本,但它不再受支持,因此我尝试使用 inappBrowser 插件而不是 childbrowser 来执行此操作。 我成功打开了登录界面,但在登录后将我重定向到网页。如何重定向到我的 html 本地页面?我可以忽略重定向 url 并只获取访问 token 吗? 这是我正在使用的代码:

<!DOCTYPE html>
 <html>
<head>
    <title></title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
    <meta charset="utf-8">
        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/jquery-2.1.1.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/codebird.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/jsOAuth-1.3.1.js"></script>
        <script type="text/javascript">

            function onBodyLoad(){
                document.addEventListener("deviceready", onDeviceReady, false);
            }

        function onDeviceReady() {

            var root = this;
            //var cb = new Codebird;
            var cb = window.open();
            if(!localStorage.getItem(twitterKey)){

                $("#loginBtn").show();
                $("#logoutBtn").hide();
            }
            else {
                return ('here test');
                $("#loginBtn").hide();
                $("#logoutBtn").show();
            }

            if (cb != null) {
                cb.addEventListener('loadstart', function(event) { onOpenExternal(); });
                cb.addEventListener('loadstop', function(event) { onOpenExternal();});
                cb.addEventListener('exit', function(event) { onCloseBrowser() });



            }
        }

        function onCloseBrowser() {
            alert('onCloseBrowser');
            console.log("onCloseBrowser!");
        }

        function locChanged(loc) {
            alert('locChanged');
            console.log("locChanged!");
        }

        function onOpenExternal() {
            alert('onOpenExternal');
            console.log("onOpenExternal!");
        }

            </script>
        <!--Below is the code for twitter-->
        <script>
            // GLOBAL VARS
            var oauth; // It Holds the oAuth data request
            var requestParams; // Specific param related to request
            var options = {
                consumerKey: 'xxxxx', // YOUR Twitter CONSUMER_KEY
                consumerSecret: 'xxxxxx', // YOUR Twitter CONSUMER_SECRET
                callbackUrl: "http://127.0.0.1:81/" }; // YOU have to replace it on one more Place
            var twitterKey = "twtrKey"; // This key is used for storing Information related


        var Twitter = {
            init:function(){
                // Apps storedAccessData , Apps Data in Raw format
                var storedAccessData, rawData = localStorage.getItem(twitterKey);
                // here we are going to check whether the data about user is already with us.
                if(localStorage.getItem(twitterKey) !== null){
                    // when App already knows data
                    storedAccessData = JSON.parse(rawData); //JSON parsing
                    //options.accessTokenKey = storedAccessData.accessTokenKey; // data will be saved when user first time signin
                    options.accessTokenSecret = storedAccessData.accessTokenSecret; // data will be saved when user first first signin

                    // javascript OAuth take care of everything for app we need to provide just the options
                    oauth = OAuth(options);
                    oauth.get('https://api.twitter.com/1/account/verify_credentials.json?skip_status=true',
                              function(data) {
                              var entry = JSON.parse(data.text);
                              console.log("USERNAME: " + entry.screen_name);
                              }
                              );
                }
                else {
                    // we have no data for save user
                    oauth = OAuth(options);
                    oauth.get('https://api.twitter.com/oauth/request_token',
                              function(data) {
                              requestParams = data.text;
                              cb=window.open('https://api.twitter.com/oauth/authorize?'+data.text); // This opens the Twitter authorization / sign in page
                              cb.addEventListener('loadstop', function(loc){alert('stop: ' + loc.url);
                                                  //       Twitter.success(loc);
                                                  });
                              },
                              function(data) {
                              console.log("ERROR: "+data);
                              }
                              );
                }
            },
            /*
             When ChildBrowser's URL changes we will track it here.
             We will also be acknowledged was the request is a successful or unsuccessful
             */
            success:function(loc){
                              alert('ok entred');
                // Here the URL of supplied callback will Load

                /*
                 Here Plugin will check whether the callback Url matches with the given Url
                 */
                if (loc.indexOf("http://127.0.0.1:81/?") >= 0) {

                    // Parse the returned URL
                    var index, verifier = '';
                    var params = loc.substr(loc.indexOf('?') + 1);

                    params = params.split('&');
                    for (var i = 0; i < params.length; i++) {
                        var y = params[i].split('=');
                        if(y[0] === 'oauth_verifier') {
                            verifier = y[1];
                        }
                    }

                    // Here we are going to change token for request with token for access

                    /*
                     Once user has authorised us then we have to change the token for request with token of access
                     here we will give data to localStorage.
                     */
                    oauth.get('https://api.twitter.com/oauth/access_token?oauth_verifier='+verifier+'&'+requestParams,
                              function(data) {
                              var accessParams = {};
                              var qvars_tmp = data.text.split('&');
                              for (var i = 0; i < qvars_tmp.length; i++) {
                              var y = qvars_tmp[i].split('=');
                              accessParams[y[0]] = decodeURIComponent(y[1]);
                              }

                              $('#oauthStatus').html('<span style="color:green;">Success!</span>');
                              $('#stage-auth').hide();
                              $('#stage-data').show();
                              oauth.setAccessToken([accessParams.oauth_token, accessParams.oauth_token_secret]);

                              // Saving token of access in Local_Storage
                              var accessData = {};
                              accessData.accessTokenKey = accessParams.oauth_token;
                              accessData.accessTokenSecret = accessParams.oauth_token_secret;

                              // Configuring Apps LOCAL_STORAGE
                              console.log("TWITTER: Storing token key/secret in localStorage");
                              localStorage.setItem(twitterKey, JSON.stringify(accessData));

                              oauth.get('https://api.twitter.com/1/account/verify_credentials.json?skip_status=true',
                                        function(data) {
                                        var entry = JSON.parse(data.text);
                                        console.log("TWITTER USER: "+entry.screen_name);
                                        $("#welcome").show();
                                        document.getElementById("welcome").innerHTML="welcome " + entry.screen_name;
                                        successfulLogin();
                                        // Just for eg.
                                        app.init();
                                        },
                                        function(data) {
                                        console.log("ERROR: " + data);
                                        }
                                        );

                              // Now we have to close the child browser because everthing goes on track.

                              window.plugins.childBrowser.close();
                              },
                              function(data) {
                              alert('rr');
                              console.log(data);


                              }
                              );
                }
                else {
                    // Just Empty
                }
            },
            tweet:function(){
                var storedAccessData, rawData = localStorage.getItem(twitterKey);

                storedAccessData = JSON.parse(rawData); // Paring Json
                options.accessTokenKey = storedAccessData.accessTokenKey; // it will be saved on first signin
                options.accessTokenSecret = storedAccessData.accessTokenSecret; // it will be save on first login

                // javascript OAuth will care of else for app we need to send only the options
                oauth = OAuth(options);
                oauth.get('https://api.twitter.com/1/account/verify_credentials.json?skip_status=true',
                          function(data) {
                          var entry = JSON.parse(data.text);
                          Twitter.post();
                          }
                          );
            },
            /*
             We now have the data to tweet
             */
            post:function(){
                var theTweet = $("#tweet").val(); // You can change it with what else you likes.

                oauth.post('https://api.twitter.com/1/statuses/update.json',
                           { 'status' : theTweet,  // javascript OAuth encodes this
                           'trim_user' : 'true' },
                           function(data) {
                           var entry = JSON.parse(data.text);
                           console.log(entry);

                           // just for eg.
                           done();
                           },
                           function(data) {
                           console.log(data);
                           }
                           );
            }

        }

        function done(){
            $("#tweet").val('');
        }


        function successfulLogin(){
            $("#loginBtn").hide();
            $("#logoutBtn,#tweet,#tweeter,#tweetBtn,#tweetText").show();

        }

        function logOut(){
            //localStorage.clear();
            window.localStorage.removeItem(twitterKey);
            document.getElementById("welcome").innerHTML="Please Login to use this app";
            $("#loginBtn").show();
            $("#logoutBtn,#tweet,#tweeter,#tweetText,#tweetBtn").hide();

        }

            </script>
        <!--Code for Twitter ends here-->
        </head>
<body onload="onBodyLoad()">

    <h4>Oodles Twitter App</h4>

    <table border="1">
        <tr>
            <th>Login using Twitter</th>
            <th>
                <button id="loginBtn" onclick="Twitter.init()">Login</button>
                <button id="logoutBtn" onclick="logOut();">Logout</button>
            </th>
        </tr>
        <tr id="tweetText" style="display:none;">
            <td colspan="2"><textarea id="tweet" style="display:none;"></textarea></td>
        </tr>
        <tr id="tweetBtn" style="display:none;">
            <td colspan="2" align="right">
                <button id="tweeter" onclick="Twitter.tweet();" style="display:none">Tweet</button>
            </td>
        </tr>
        <tr><td colspan="2"><div id="welcome">Please Login to use this app</div></td></tr>
    </table>



</body>

最佳答案

实际上您的代码中存在错误,您必须修复它: https://api.twitter.com/1/account/verify_credentials.json?skip_status=true' 不再使用,将其更改为 1.1。 还可以更改关闭 inapp 浏览器的方式。 这段代码对我有用试试看:

<!DOCTYPE html>
<html>
<head>
    <title></title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
    <meta charset="utf-8">
        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/jquery-2.1.1.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/codebird.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/jsOAuth-1.3.1.js"></script>
        <script type="text/javascript">

            function onBodyLoad(){
                document.addEventListener("deviceready", onDeviceReady, false);
            }

        function onDeviceReady() {

            var root = this;
            //var cb = new Codebird;
            var cb = window.open();
            if(!localStorage.getItem(twitterKey)){

                $("#loginBtn").show();
                $("#logoutBtn").hide();
            }
            else {
                retiurn ('hhhh');
                $("#loginBtn").hide();
                $("#logoutBtn").show();
            }

            if (cb != null) {
                cb.addEventListener('loadstart', function(event) { onOpenExternal(); });
                cb.addEventListener('loadstop', function(event) { onOpenExternal();});
                cb.addEventListener('exit', function(event) { onCloseBrowser() });



            }
        }

        function onCloseBrowser() {
            alert('onCloseBrowser');
            console.log("onCloseBrowser!");
        }

        function locChanged(loc) {
            alert('locChanged');
            console.log("locChanged!");
        }

        function onOpenExternal() {
            alert('onOpenExternal');
            console.log("onOpenExternal!");
        }

            </script>
        <!--Below is the code for twitter-->
        <script>
            // GLOBAL VARS
            var oauth; // It Holds the oAuth data request
            var requestParams; // Specific param related to request
            var options = {
                consumerKey: 'xxxxx', // YOUR Twitter CONSUMER_KEY
                consumerSecret: 'xxxxx', // YOUR Twitter CONSUMER_SECRET
                callbackUrl: "http://127.0.0.1:81/" }; // YOU have to replace it on one more Place
        var twitterKey = "twtrKey"; // This key is used for storing Information related


        var Twitter = {
            init:function(){
                // Apps storedAccessData , Apps Data in Raw format
                var storedAccessData, rawData = localStorage.getItem(twitterKey);
                // here we are going to check whether the data about user is already with us.
                if(localStorage.getItem(twitterKey) !== null){
                    // when App already knows data
                    storedAccessData = JSON.parse(rawData); //JSON parsing
                    //options.accessTokenKey = storedAccessData.accessTokenKey; // data will be saved when user first time signin
                    options.accessTokenSecret = storedAccessData.accessTokenSecret; // data will be saved when user first first signin

                    // javascript OAuth take care of everything for app we need to provide just the options
                    oauth = OAuth(options);
                    oauth.get('https://api.twitter.com/1/account/verify_credentials.json?skip_status=true',
                              function(data) {
                              var entry = JSON.parse(data.text);
                              console.log("USERNAME: " + entry.screen_name);
                              }
                              );
                }
                else {
                    // we have no data for save user
                    oauth = OAuth(options);
                    oauth.get('https://api.twitter.com/oauth/request_token',
                              function(data) {
                              requestParams = data.text;
                              cb=window.open('https://api.twitter.com/oauth/authorize?'+data.text,'_blank', 'location=no'); // This opens the Twitter authorization / sign in page
                              cb.addEventListener('loadstop', function(loc){//alert('stop: ' + loc.url);
                                                  Twitter.success(loc);
                                                  });
                              },
                              function(data) {
                              console.log("ERROR: "+data);
                              }
                              );
                }
            },
            /*
             When ChildBrowser's URL changes we will track it here.
             We will also be acknowledged was the request is a successful or unsuccessful
             */
            success:function(loc){
               // alert(loc.url);
                // Here the URL of supplied callback will Load

                /*
                 Here Plugin will check whether the callback Url matches with the given Url
                 */
                if (loc.url.indexOf("http://127.0.0.1:81/?") >-1) {



                    // Parse the returned URL
                    var index, verifier = '';
                    var params = loc.url.substr(loc.url.indexOf('?') + 1);

                    params = params.split('&');
                    for (var i = 0; i < params.length; i++) {
                        var y = params[i].split('=');
                        if(y[0] === 'oauth_verifier') {
                            verifier = y[1];
                        }
                    }

                    // Here we are going to change token for request with token for access

                    /*
                     Once user has authorised us then we have to change the token for request with token of access
                     here we will give data to localStorage.
                     */

                    oauth.get('https://api.twitter.com/oauth/access_token?oauth_verifier='+verifier+'&'+requestParams,
                              function(data) {
                              var accessParams = {};
                              var qvars_tmp = data.text.split('&');
                              for (var i = 0; i < qvars_tmp.length; i++) {
                              var y = qvars_tmp[i].split('=');
                              accessParams[y[0]] = decodeURIComponent(y[1]);
                              }
                              // alert(verifier)

                              $('#oauthStatus').html('<span style="color:green;">Success!</span>');
                              $('#stage-auth').hide();
                              $('#stage-data').show();
                              oauth.setAccessToken([accessParams.oauth_token, accessParams.oauth_token_secret]);

                              // Saving token of access in Local_Storage
                              var accessData = {};
                              accessData.accessTokenKey = accessParams.oauth_token;
                              accessData.accessTokenSecret = accessParams.oauth_token_secret;

                              // Configuring Apps LOCAL_STORAGE
                              console.log("TWITTER: Storing token key/secret in localStorage");

                              localStorage.setItem(twitterKey, JSON.stringify(accessData));


                              oauth.get('https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true',
                                        function(data) {
                                        // alert('key'+twitterKey);
                                        var entry = JSON.parse(data.text);
                                        console.log("TWITTER USER: "+entry.screen_name);
                                        $("#welcome").show();
                                        document.getElementById("welcome").innerHTML="welcome " + entry.screen_name;
                                        successfulLogin();
                                        // Just for eg.
                                        app.init();
                                        },
                                        function(data) {
                                        console.log("ERROR: " + data);
                                        }
                                        );

                              // Now we have to close the child browser because everthing goes on track.

                              cb.close();
                              },
                              function(data) {
                             // alert('rr');
                              console.log(data);


                              }
                              );
                }
                else {
                    // Just Empty
                }
            },
            tweet:function(){
                var storedAccessData, rawData = localStorage.getItem(twitterKey);

                storedAccessData = JSON.parse(rawData); // Paring Json
                options.accessTokenKey = storedAccessData.accessTokenKey; // it will be saved on first signin
                options.accessTokenSecret = storedAccessData.accessTokenSecret; // it will be save on first login

                // javascript OAuth will care of else for app we need to send only the options
                oauth = OAuth(options);
                oauth.get('https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true',
                          function(data) {
                          var entry = JSON.parse(data.text);
                          Twitter.post();
                          }
                          );
            },
            /*
             We now have the data to tweet
             */
            post:function(){
                var theTweet = $("#tweet").val(); // You can change it with what else you likes.

                oauth.post('https://api.twitter.com/1.1/statuses/update.json',
                           { 'status' : theTweet,  // javascript OAuth encodes this
                           'trim_user' : 'true' },
                           function(data) {
                           var entry = JSON.parse(data.text);
                           console.log(entry);

                           // just for eg.
                           done();
                           },
                           function(data) {
                           console.log(data);
                           }
                           );
            }

        }

        function done(){
            $("#tweet").val('');
        }


        function successfulLogin(){
            $("#loginBtn").hide();
            $("#logoutBtn,#tweet,#tweeter,#tweetBtn,#tweetText").show();

        }

        function logOut(){
            //localStorage.clear();
            window.localStorage.removeItem(twitterKey);
            document.getElementById("welcome").innerHTML="Please Login to use this app";
            $("#loginBtn").show();
            $("#logoutBtn,#tweet,#tweeter,#tweetText,#tweetBtn").hide();

        }

            </script>
        <!--Code for Twitter ends here-->
        </head>
<body onload="onBodyLoad()">

    <h4>Oodles Twitter App</h4>

    <table border="1">
        <tr>
            <th>Login using Twitter</th>
            <th>
                <button id="loginBtn" onclick="Twitter.init()">Login</button>
                <button id="logoutBtn" onclick="logOut();">Logout</button>
            </th>
        </tr>
        <tr id="tweetText" style="display:none;">
            <td colspan="2"><textarea id="tweet" style="display:none;"></textarea></td>
        </tr>
        <tr id="tweetBtn" style="display:none;">
            <td colspan="2" align="right">
                <button id="tweeter" onclick="Twitter.tweet();" style="display:none">Tweet</button>
            </td>
        </tr>
        <tr><td colspan="2"><div id="welcome">Please Login to use this app</div></td></tr>
    </table>



</body>

关于android - 在 phonegap 应用程序上使用 Twitter 登录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27960272/

有关android - 在 phonegap 应用程序上使用 Twitter 登录的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 使用 RubyZip 生成 ZIP 文件时设置压缩级别 - 2

    我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看ruby​​zip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d

  3. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  4. ruby-on-rails - 使用 Ruby on Rails 进行自动化测试 - 最佳实践 - 2

    很好奇,就使用ruby​​onrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提

  5. ruby - 在 Ruby 中使用匿名模块 - 2

    假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于

  6. ruby - 使用 ruby​​ 和 savon 的 SOAP 服务 - 2

    我正在尝试使用ruby​​和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我

  7. ruby - 在 Ruby 程序执行时阻止 Windows 7 PC 进入休眠状态 - 2

    我需要在客户计算机上运行Ruby应用程序。通常需要几天才能完成(复制大备份文件)。问题是如果启用sleep,它会中断应用程序。否则,计算机将持续运行数周,直到我下次访问为止。有什么方法可以防止执行期间休眠并让Windows在执行后休眠吗?欢迎任何疯狂的想法;-) 最佳答案 Here建议使用SetThreadExecutionStateWinAPI函数,使应用程序能够通知系统它正在使用中,从而防止系统在应用程序运行时进入休眠状态或关闭显示。像这样的东西:require'Win32API'ES_AWAYMODE_REQUIRED=0x0

  8. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  9. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  10. ruby - 将差异补丁应用于字符串/文件 - 2

    对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl

随机推荐