|
|
|
|
90
|
//確認完成填寫問卷後,建立完成問券標籤
|
90
|
//確認完成填寫問卷後,建立完成問券標籤
|
91
|
$buildActions = [];
|
91
|
$buildActions = [];
|
92
|
array_push($buildActions, $this->buildActionsRequest("addTag", config("botApi.doneSurvey")));
|
92
|
array_push($buildActions, $this->buildActionsRequest("addTag", config("botApi.doneSurvey")));
|
93
|
- // array_push($buildActions, $this->buildActionsRequest("setMenu", config("botApi.setMenuDoneSurvey")));
|
|
|
|
|
93
|
+ array_push($buildActions, $this->buildActionsRequest("setMenu", config("botApi.setMenuDoneSurvey")));
|
94
|
$this->botActionsSend($lineUserId,$buildActions);
|
94
|
$this->botActionsSend($lineUserId,$buildActions);
|
95
|
//儲存填寫資料
|
95
|
//儲存填寫資料
|
96
|
if(empty($survey_data->id)){
|
96
|
if(empty($survey_data->id)){
|
|
|
|
|
101
|
$survey_data->nickname = $healthNickname;
|
101
|
$survey_data->nickname = $healthNickname;
|
102
|
$survey_data->filler_content = json_encode($survey_fill_content);
|
102
|
$survey_data->filler_content = json_encode($survey_fill_content);
|
103
|
$survey_data->save();
|
103
|
$survey_data->save();
|
104
|
- //完成推送訊息
|
|
|
105
|
- $res_users = $client->request('POST', 'https://api.botbonnie.com/v2/message/push',[
|
|
|
106
|
- 'headers'=>$this->api_header,
|
|
|
107
|
- 'json' => [
|
|
|
108
|
- 'userId' => $lineUserId,
|
|
|
109
|
- 'pageId' => config('botApi.lineOAId'),
|
|
|
110
|
- 'platform' => 1,
|
|
|
111
|
- 'moduleId' => 'module-_z7jnxoF4P'
|
|
|
112
|
- ]
|
|
|
113
|
- ]);
|
|
|
114
|
- $statusCode = $res_users->getStatusCode();
|
|
|
|
|
104
|
+ // //完成推送訊息
|
|
|
105
|
+ // $res_users = $client->request('POST', 'https://api.botbonnie.com/v2/message/push',[
|
|
|
106
|
+ // 'headers'=>$this->api_header,
|
|
|
107
|
+ // 'json' => [
|
|
|
108
|
+ // 'userId' => $lineUserId,
|
|
|
109
|
+ // 'pageId' => config('botApi.lineOAId'),
|
|
|
110
|
+ // 'platform' => 1,
|
|
|
111
|
+ // 'moduleId' => 'module-_z7jnxoF4P'
|
|
|
112
|
+ // ]
|
|
|
113
|
+ // ]);
|
|
|
114
|
+ // $statusCode = $res_users->getStatusCode();
|
115
|
return response()->json(["result" => 'successed']);
|
115
|
return response()->json(["result" => 'successed']);
|
116
|
}else{
|
116
|
}else{
|
117
|
return response()->json(["result" => 'failed'] );
|
117
|
return response()->json(["result" => 'failed'] );
|