标题:求解和服务器通信问题
只看楼主
paopao521
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2016-4-10
 问题点数:0 回复次数:0 
求解和服务器通信问题
安卓客户端要和同学利用python写的服务器通信  但是一直不行
程序代码:
HttpURLConnection conn = null;
                    URL url = new URL("https://api.smratfarm.tk/client/login");
                    conn = (HttpURLConnection)url.openConnection();
                    conn.setRequestMethod("POST");
                    DataOutputStream out = new DataOutputStream(conn.getOutputStream());
                    out.writeBytes("username=debuger&password=debuger");
                    InputStream in = conn.getInputStream();
                    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
                    StringBuilder response = new StringBuilder();
                    String line;
                    
                    while ((line = reader.readLine())!= null){
                        response.append(line);
                    }    
                    
                    Message message = new Message();
                    message.what = 0;
                    message.obj = response.toString();
                    handler.sendMessage(message);
                }catch(Exception e)
                {
                        
                        e.printStackTrace();
                }    
                
            }
        }).start();
    }


流程是这样的我想先post账号和密码过去,看能不能得到token

https://api.smratfarm.tk/client/login
post username password从这个api拿到token
测试用账号密码为debuger debuger

https://api.smratfarm.tk/client/get
post token到这个api,会得到最新的BRI 7位字符
如果token错了会有错误码
搜索更多相关主题的帖子: 服务器 python 客户端 通信 
2016-04-10 15:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-463481-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.145905 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved