12345678 |
- <?php
- header("Content-type:text/html;charset=utf-8");
- require './ServerAPI.php';
- //网易云信分配的账号,请替换你在管理后台应用下申请的Appkey
- $AppKey = '9db7587502c900c7cad2d8489f98c0d8';
- //网易云信分配的账号,请替换你在管理后台应用下申请的appSecret
- $AppSecret = '820ba4521b7b';
- $p = new ServerAPI($AppKey, $AppSecret, $_SESSION['name']);
|