dpbdl44228 2018-11-17 11:16
浏览 70

使用Android Volley在laravel Passport中创建用户

We have Laravel + passport in our localhost (xampp). we want send request from android app to laravel app but below method have no response and no error and btnSubmit text be empty after sending request and we don't receive any access token. where is the problem of this method?

private void createUser(){
    final String url = "http://192.168.1.3/me2we/public/oauth/token";
    StringRequest stringRequest = new StringRequest(
            Request.Method.POST, url
            , new Response.Listener<String>() {
                @Override
                public void onResponse(String response) {
                    btnSubmit.setText(response);
                }
            }, new Response.ErrorListener(){
                @Override
                public void onErrorResponse(VolleyError error) {
                    btnSubmit.setText(error.getMessage());
                }
            }
        ){
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            Map<String,String> params = new HashMap<String, String>();
            params.put("grant_type","password");
            params.put("client_id","2");
            params.put("client_secret","MKCFtd1U7pJ3J85iSu380SyGIVltWlYdrL334pbF");
            params.put("username","aminshabanzadeh1@gmail.com");
            params.put("password","A1b2C");
            params.put("scope","");
            return params;
        }
    };
    AppController.getInstance().addToRequestQueue(stringRequest);
}

did we select the correct ip address in request url? below is ipconfig command output in CMD:

Windows IP Configuration


Ethernet adapter Ethernet 3:

   Connection-specific DNS Suffix  . : test.com
   Link-local IPv6 Address . . . . . : fe80::7d4b:27f7:1e6d:f341%20
   IPv4 Address. . . . . . . . . . . : 10.253.31.78
   Subnet Mask . . . . . . . . . . . : 255.255.248.0
   Default Gateway . . . . . . . . . :

Ethernet adapter Ethernet 2:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Wireless LAN adapter Wi-Fi:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Wireless LAN adapter Local Area Connection* 2:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Wireless LAN adapter Local Area Connection* 13:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

Ethernet adapter Ethernet:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::8852:3d75:59b3:a871%9
   IPv4 Address. . . . . . . . . . . : 192.168.1.3
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.1.1

Ethernet adapter VMware Network Adapter VMnet1:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::41f9:ce63:37a2:134%10
   IPv4 Address. . . . . . . . . . . : 192.168.229.1
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :

Ethernet adapter VMware Network Adapter VMnet8:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::11b1:57cb:b413:26de%4
   IPv4 Address. . . . . . . . . . . : 192.168.230.1
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . :

Ethernet adapter Bluetooth Network Connection:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :

laravel verfy token class:

<?php

namespace App\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;

class VerifyCsrfToken extends Middleware
{
    /**
     * Indicates whether the XSRF-TOKEN cookie should be set on the response.
     *
     * @var bool
     */
    protected $addHttpCookie = true;

    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        //
    ];
}
  • 写回答

2条回答 默认 最新

  • dscqrkvr9562034621 2018-11-17 11:42
    关注

    In Laravel, with POST method, you need to verify Csrf Token for security. The easy way i knew is to ignore this check security.

    You may try: add your name method to the file in Laravel: Controllers/Middleware/VerifyCsrfToken.php

    if you know how to accept the verify and check it on Android Studio, please let me know VerifyCsrfToken class in Laravel

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。