//我正在使用
使用我的cc3200启动板在我的本地服务器上的v_updated.php文件
//我想知道这是我在cc3200中用于GET请求的正确语法
![on console i got following outpt]
[1] STA connected to AP:
[2]IP Acquired :
[3]Connection to server created successfully
HTTP Get Begin:
Failed to send HTTP GET request
HTTP Post Get failed
HTTP gET End:
我也想知道正在使用的json解析器..
答案 0 :(得分:0)
您的本地服务器可能正在拒绝来自CC3200的请求。尝试配置本地服务器。
如果您使用的是XAMPP,请转到Config
> httpd.conf
,打开它。
搜索AllowOverride
。您将找到以下设置(或类似),
<Directory />
AllowOverride None
Options None
Order allow,deny
Allow from None
</Directory>
将None
更改为All
。
它应该看起来像
`<Directory />
AllowOverride All
Options All
Order allow,deny
Allow from All
</Directory>`