我正在尝试制作 MongooseIM 模块,该模块将使用 offline_message_hook 触发,为用户计算离线存储中待处理消息的数量,并通过 GET 方法将其发送到 URL。下面是我的代码。
send_notice(From, To, Packet) ->
Type = xml:get_tag_attr_s(list_to_binary("type"), Packet),
Body = xml:get_path_s(Packet, [{elem, list_to_binary("body")}, cdata]),
PostUrl = "http://myurl.com/",
Count = count_msg(To),
GetParam = "?count=",
FullUrl = PostUrl ++ GetParam ++ Count,
?DEBUG("POST URL : ~s",[FullUrl]),
if (Type == <<"chat">>) and (Body /= <<"">>) ->
Sep = "&",
Post = [
"alert=", url_encode(binary_to_list(Body)), Sep,
"badge=", url_encode("+1"), Sep,
% "sound=", Sound, Sep,
"channel=", To#jid.luser, Sep,
"info[from]=", From#jid.luser, Sep],
% "auth_token=", Token],
?INFO_MSG("Sending post request to ~s with body \"~s\"", [FullUrl, Post]),
httpc:request(post, {binary_to_list(FullUrl), [], "application/x-www-form-urlencoded", list_to_binary(Post)},[],[]),
ok;
true ->
ok
end.
count_msg(To) ->
Username = To#jid.luser,
LServer = To#jid.lserver,
Count = ejabberd_odbc:sql_query(
LServer,
["select count(*) from offline_message "
"where username='", Username, "';"]),
?DEBUG("Count = ~s",[Count]),
Count.
当我运行它时,我收到以下错误
2015-03-09 16:37:11.598 [debug] <0.763.0>@mod_zeropush:count_msg:102 FORMAT ERROR: "Count = ~s" [{selected,[<<"count">>],[{<<"5">>}]}]
["select count(*) from offline_message where username='",<<"reader">>,"';"]
2015-03-09 16:37:11.599 [debug] <0.763.0>@mod_zeropush:send_notice:72 FORMAT ERROR: "POST URL : ~s" [[104,116,116,112,58,47,47,107,107,104,97,110,46,100,108,99,119,111,114,108,100,119,105,100,101,46,99,111,109,47,63,99,111,117,110,116,61|{selected,[<<"count">>],[{<<"5">>}]}]]
2015-03-09 16:37:11.599 [info] <0.763.0>@mod_zeropush:send_notice:84 FORMAT ERROR: "Sending post request to ~s with body \"~s\"" [[104,116,116,112,58,47,47,107,107,104,97,110,46,100,108,99,119,111,114,108,100,119,105,100,101,46,99,111,109,47,63,99,111,117,110,116,61|{selected,[<<"count">>],[{<<"5">>}]}],["alert=","xxx","&","badge=","%2B1","&","channel=",<<"reader">>,"&","info[from]=",<<"kkhan">>,"&"]]
2015-03-09 16:37:11.602 [error] <0.763.0>@ejabberd_hooks:run1:240 {badarg,[{erlang,binary_to_list,[[104,116,116,112,58,47,47,107,107,104,97,110,46,100,108,99,119,111,114,108,100,119,105,100,101,46,99,111,109,47,63,99,111,117,110,116,61|{selected,[<<"count">>],[{<<"5">>}]}]],[]},{mod_zeropush,send_notice,3,[{file,"src/mod_zeropush.erl"},{line,86}]},{safely,apply,3,[{file,"src/safely.erl"},{line,19}]},{ejabberd_hooks,run1,3,[{file,"src/ejabberd_hooks.erl"},{line,236}]},{ejabberd_sm,route,3,[{file,"src/ejabberd_sm.erl"},{line,108}]},{ejabberd_local,route,3,[{file,"src/ejabberd_local.erl"},{line,139}]},{ejabberd_router,route,3,[{file,"src/ejabberd_router.erl"},{line,78}]},{ejabberd_c2s,session_established2,2,[{file,"src/ejabberd_c2s.erl"},{line,1098}]}]}
在erlang中获取SQL查询结果的正确方法是什么?httpc:request 期望什么格式?