Home Backend Development PHP Tutorial WeChat public platform development (7) Chat robot function development_PHP tutorial

WeChat public platform development (7) Chat robot function development_PHP tutorial

Jul 20, 2016 am 11:15 AM
superior Function accomplish platform develop WeChat article robot of translate chat

The previous article introduced the development of the translation function of the WeChat public platform, which realizes translation between Chinese, English and Japanese, and can also be used in real life. In the next article, we will complete a more interesting function, which is a chatbot that can chat with you and make you happy when you are bored.

In this experiment, we will call the API provided by the official Xiaohuangji (http://www.simsimi.com/), combined with grabbing the Xiaojiu robot (http://www.xiaojo.com/) web pages that complement each other. Simsimi is charged, but you can try a 7-day test and you can use 100 replies for free every day; Xiaojiu robot can be used without restrictions, but only if it is not officially blocked.

3.1 API & URL

Official API address: http://developer.simsimi.com/api

Request URL: http://sandbox.api.simsimi.com/request.p

The free version is used for testing here. The paid version is similar except that the URL address is different.

3.2 Request examples and parameter description

Request example:

http://sandbox.api.simsimi.com/request.p?key=your_trial_key<span &lc</span>=en<span &ft</span>=1.0<span &text</span>=hi
Copy after login

Parameter description:

Language code, supported languages, use ch for simplified Chinese, zh for traditional Chinese, and en for English. For details, please refer to: http://developer.simsimi.com/lclist

 0.0: Unfiltered (contains curses, sexual content);

 1.0: Filter out uncivilized words (temporarily only supports Korean)

3.3 Return value analysis

result: execution result return code

  • 400-Bad Request.
  • 401-Unauthorized.
  • 404-Not found.
  • 500-Server Error.

id: reply message id (only available when result=100)

response: reply message (only available when result=100)

4.1 Register simsimi account

URL: http://developer.simsimi.com/signUp

4.2 Activate account

4.3 Obtain API Key

5.1 Implementation of calling Xiaohuangji API

Call the simsim($keyword) function and replace "Your API Key" with the applied API Key.

    <span //</span><span 小黄鸡</span>
    <span public</span> <span function</span> simsim(<span $keyword</span><span ){

        </span><span $key</span>="<span>41250a68-3cb5-43c8-9aa2-d7b3caf519b1</span>"<span ;
        </span><span $url_simsimi</span>="http://sandbox.api.simsimi.com/request.p?key=".<span $key</span>."&lc=ch&ft=0.0&text=".<span $keyword</span><span ;
        
        </span><span $json</span>=<span file_get_contents</span>(<span $url_simsimi</span><span );  <span>// </span><span>把整个文件读入一个字符串中</span>

        </span><span $result</span>=json_decode(<span $json</span>,<span true</span><span );  <span>// </span><span>对JSON 格式的字符串进行编码</span>

        </span><span //</span><span $errorCode=$result['result'];  // 调试用</span>

        <span $response</span>=<span $result</span>['response'<span ];  // 回复的消息

        </span><span if</span>(!<span empty</span>(<span $response</span><span )){
            </span><span return</span> <span $response</span><span ;
        }</span><span else</span><span {
            </span><span $ran</span>=<span rand</span>(1,5<span );
            </span><span switch</span>(<span $ran</span><span ){
                </span><span case</span> 1:
                    <span return</span> "小鸡鸡今天累了,明天再陪你聊天吧。"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 2:
                    <span return</span> "小鸡鸡睡觉喽~~"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 3:
                    <span return</span> "呼呼~~呼呼~~"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 4:
                    <span return</span> "你话好多啊,不跟你聊了"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 5:
                    <span return</span> "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n"."卓越锦绣,万代不朽"<span ;
                    </span><span break</span><span ;
                </span><span default</span>:
                    <span return</span> "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n"."卓越锦绣,万代不朽"<span ;
                    </span><span break</span><span ;
            }
        }
    }</span>
Copy after login

Instructions:

Because sometimes the little yellow chicken does not reply, a judgment is added to the simsim() function. If $response is not empty, $response is returned; if $response is empty, a small code is added , and let it randomly reply to a customized message, so that it can respond to requests.

5.2 Call Xiaojiu robot to implement

Xiaojiu Robot does not provide API, so it can only be crawled through web pages. The code is as follows:

    <span //</span><span 小九机器人</span>
    <span public</span> <span function</span> xiaojo(<span $keyword</span><span ){

        </span><span $curlPost</span>=<span array</span>("chat"=><span $keyword</span><span );
        </span><span $ch</span> = curl_init();<span //</span><span 初始化curl</span>
        curl_setopt(<span $ch</span>, CURLOPT_URL,'http://www.xiaojo.com/bot/chata.php');<span //</span><span 抓取指定网页</span>
        curl_setopt(<span $ch</span>, CURLOPT_HTTPHEADER, <span $header</span><span );
        curl_setopt(</span><span $ch</span>, CURLOPT_HEADER, 0);<span //</span><span 设置header</span>
        curl_setopt(<span $ch</span>, CURLOPT_RETURNTRANSFER, 1);<span //</span><span 要求结果为字符串且输出到屏幕上</span>
        curl_setopt(<span $ch</span>, CURLOPT_POST, 1);<span //</span><span post提交方式</span>
        curl_setopt(<span $ch</span>, CURLOPT_POSTFIELDS, <span $curlPost</span><span );
        </span><span $data</span> = curl_exec(<span $ch</span>);<span //</span><span 运行curl</span>
        curl_close(<span $ch</span><span );
        </span><span if</span>(!<span empty</span>(<span $data</span><span )){
            </span><span return</span> <span $data</span><span ;
        }</span><span else</span><span {
            </span><span $ran</span>=<span rand</span>(1,5<span );
            </span><span switch</span>(<span $ran</span><span ){
                </span><span case</span> 1:
                    <span return</span> "小鸡鸡今天累了,明天再陪你聊天吧。"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 2:
                    <span return</span> "小鸡鸡睡觉喽~~"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 3:
                    <span return</span> "呼呼~~呼呼~~"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 4:
                    <span return</span> "你话好多啊,不跟你聊了"<span ;
                    </span><span break</span><span ;
                </span><span case</span> 5:
                    <span return</span> "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n"."卓越锦绣,万代不朽"<span ;
                    </span><span break</span><span ;
                </span><span default</span>:
                    <span return</span> "感谢您关注【卓锦苏州】"."\n"."微信号:zhuojinsz"."\n"."卓越锦绣,万代不朽"<span ;
                    </span><span break</span><span ;
            }
        }
    }</span>
Copy after login

5.3 Two Dragons Playing with Phoenix

We can also integrate the above Xiaohuangji and Xiaojiu robots. The specific code is as follows:

    <span //</span><span 双龙戏凤</span>
    <span public</span> <span function</span> chatter(<span $keyword</span><span ){

        </span><span $curlPost</span>=<span array</span>("chat"=><span $keyword</span><span );
        </span><span $ch</span> = curl_init();    <span //</span><span 初始化curl</span>
        curl_setopt(<span $ch</span>, CURLOPT_URL,'http://www.xiaojo.com/bot/chata.php');    <span //</span><span 抓取指定网页</span>
        curl_setopt(<span $ch</span>, CURLOPT_HTTPHEADER, <span $header</span><span );
        curl_setopt(</span><span $ch</span>, CURLOPT_HEADER, 0);    <span //</span><span 设置header</span>
        curl_setopt(<span $ch</span>, CURLOPT_RETURNTRANSFER, 1);    <span //</span><span 要求结果为字符串且输出到屏幕上</span>
        curl_setopt(<span $ch</span>, CURLOPT_POST, 1);    <span //</span><span post提交方式</span>
        curl_setopt(<span $ch</span>, CURLOPT_POSTFIELDS, <span $curlPost</span><span );
        </span><span $data</span> = curl_exec(<span $ch</span>);    <span //</span><span 运行curl</span>
        curl_close(<span $ch</span><span );

        </span><span if</span>(!<span empty</span>(<span $data</span><span )){
            </span><span return</span> <span $data</span>." [/::)小九]"<span ;
        }</span><span else</span><span {
            </span><span return</span> <span $this</span>->simsim(<span $keyword</span>)." [simsim/::D]"<span ;
        }
    }</span>
Copy after login

Please go to QQ group 213260412 to share to download and use.

Please follow Zhuojin Suzhou WeChat public account, Zhuojin Suzhou is developed based on SAE platform, Develop and test mainstream WeChat functions.

You can follow the Zhuojin Suzhou public account to conduct functional testing and obtain new application development.

1. Log in to the WeChat client, friends -> add friends -> search number -> zhuojinsz, find and follow.

2. Scan the QR code:

Zhuojin Suzhou Menu function:

Currently, the specific functions of the menu are still under development and will be updated gradually, so stay tuned. . .


We Believe, Great People Share Knowledge...

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/440165.htmlTechArticleThe previous article introduced the development of the translation function of WeChat public platform, realizing translation between Chinese, English and Japanese. , can also be used in real life. In this next article, we...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Ouyi Exchange app domestic download tutorial Ouyi Exchange app domestic download tutorial Mar 21, 2025 pm 05:42 PM

This article provides a detailed guide to safe download of Ouyi OKX App in China. Due to restrictions on domestic app stores, users are advised to download the App through the official website of Ouyi OKX, or use the QR code provided by the official website to scan and download. During the download process, be sure to verify the official website address, check the application permissions, perform a security scan after installation, and enable two-factor verification. During use, please abide by local laws and regulations, use a safe network environment, protect account security, be vigilant against fraud, and invest rationally. This article is for reference only and does not constitute investment advice. Digital asset transactions are at your own risk.

The difference between H5 and mini-programs and APPs The difference between H5 and mini-programs and APPs Apr 06, 2025 am 10:42 AM

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

What is the difference between H5 page production and WeChat applets What is the difference between H5 page production and WeChat applets Apr 05, 2025 pm 11:51 PM

H5 is more flexible and customizable, but requires skilled technology; mini programs are quick to get started and easy to maintain, but are limited by the WeChat framework.

What should I do if the company's security software conflicts with applications? How to troubleshoot HUES security software causes common software to fail to open? What should I do if the company's security software conflicts with applications? How to troubleshoot HUES security software causes common software to fail to open? Apr 01, 2025 pm 10:48 PM

Compatibility issues and troubleshooting methods for company security software and application. Many companies will install security software in order to ensure intranet security. However, security software sometimes...

What is the purpose of PowerToys? What is the purpose of PowerToys? Apr 03, 2025 am 12:10 AM

PowerToys is a free collection of tools launched by Microsoft to enhance productivity and system control for Windows users. It provides features through standalone modules such as FancyZones management window layout and PowerRename batch renaming files, making user workflow smoother.

How to solve the problem of JS resource caching in enterprise WeChat? How to solve the problem of JS resource caching in enterprise WeChat? Apr 04, 2025 pm 05:06 PM

Discussion on the JS resource caching issue of Enterprise WeChat. When upgrading project functions, some users often encounter situations where they fail to successfully upgrade, especially in the enterprise...

Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

How to choose H5 and applets How to choose H5 and applets Apr 06, 2025 am 10:51 AM

The choice of H5 and applet depends on the requirements. For applications with cross-platform, rapid development and high scalability, choose H5; for applications with native experience, rich functions and platform dependencies, choose applets.

See all articles