使用PHP连接到ASP.NET API

时间:2017-07-06 09:34:06

标签: php asp.net json api

以下是将Navigation Drawer转换为Array

的代码
json

这是我的结果

$specific = [];

  $specific[] = ["message" => $row["traditionalmessage"],
              "mobile" => $row["telMobile"]];
}
 echo json_encode($specific,JSON_UNESCAPED_UNICODE);

现在,我必须使用PHP连接到ASP.Net API。 由于API已设置登录 ,我需要发送带有2个键的标题

[{"message":"hi","mobile":"96709394"},{"message":"hello","mobile":"96709394"}]

有关连接ASP.NET API的任何想法? 感谢

0 个答案:

没有答案