| xqd
@@ -7,6 +7,7 @@ namespace App\Community\Controllers;
|
|
|
use App\Http\Controllers\Controller;
|
|
|
use App\Models\Docter;
|
|
|
use App\Models\PatientRemark;
|
|
|
+use EasyWeChat\Factory;
|
|
|
|
|
|
class ApiController extends Controller
|
|
|
{
|
| xqd
@@ -28,4 +29,17 @@ class ApiController extends Controller
|
|
|
return redirect('/cdms/nurse_users');
|
|
|
}
|
|
|
|
|
|
+ public function sendmsg(){
|
|
|
+
|
|
|
+ $config = [
|
|
|
+// 'app_id' => 'wx1c2357232cd25f65',
|
|
|
+// 'secret' => 'c8cab53e4e52234ed1bc2abbdeaba57d',
|
|
|
+ 'app_id' => 'wx13bedfcc62e9bab0',
|
|
|
+ 'secret' => '175e5518b6426dd12d3096f24ca68fb8',
|
|
|
+ 'response_type' => 'array'
|
|
|
+ ];
|
|
|
+ $app = Factory::officialAccount($config );
|
|
|
+ $app->broadcasting->sendText("大家好!欢迎使用 EasyWeChat。",['o481Y5AtcbnOQef1vc4rL4TwYpDU', 'o481Y5AQG11MyqsEA9656TBEYTFM']);
|
|
|
+ }
|
|
|
+
|
|
|
}
|