Git Product home page Git Product logo

Comments (4)

tuupola avatar tuupola commented on May 30, 2024

How does your curl request look like? You should send an array which contains the requested scope, for example --data '["todo.all"]'.

from slim-api-skeleton.

carlo-arellano avatar carlo-arellano commented on May 30, 2024

i tried to run this curl:

curl "http://veravita-member.localhost:88/api/token" --request POST --include --insecure --header "Content-Type: application/json" --data '["todo.all"]' --user test:test

But the system response with:

HTTP/1.1 201 Created
Date: Fri, 16 Jun 2017 09:17:43 GMT
Server: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.6.21
X-Powered-By: PHP/5.6.21
Content-Length: 418
Content-Type: application/json

{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE0OTc2MDQ2NjQsImV4cCI6MTQ5NzYxMTg2NCwianRpIjoiOXNlcTJxVFZCUDJvRnFScEppTGdRIiwic3ViIjoidGVzdCIsInNjb3BlIjpudWxsfQ.RQUB0FdW9_fXHea8KhRus9AY1Lhn9tWriSUTgMfyJk4",
"expires": 1497611864
}

Warning: array_filter() expects parameter 1 to be array, null given in D:\xampp\htdocs\VeraVitaMember\api\routes\token.php on line 34

What I might be missing? Thanks!

from slim-api-skeleton.

tuupola avatar tuupola commented on May 30, 2024

Just tried with fresh install and do not see that warning.

$ curl "http://192.168.50.5/token" --request POST --include --insecure --header "Content-Type: application/json" --data '["todo.all"]' --user test:test
HTTP/1.1 201 Created
Date: Fri, 16 Jun 2017 12:10:35 GMT
Server: Apache/2.2.15 (CentOS)
X-Powered-By: PHP/5.6.30
Content-Length: 291
Connection: close
Content-Type: application/json

{
    "token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE0OTc2MTUwMzUsImV4cCI6MTQ5NzYyMjIzNSwianRpIjoiMndVQWZNaVg0dXpEM2RUNUVpaFhxMyIsInN1YiI6InRlc3QiLCJzY29wZSI6WyJ0b2RvLmFsbCJdfQ.9Un5hsSuQ-WpQlnPftX03EJw-ymxnyPZdRTCH7DQnXw",
    "expires": 1497622235
}

However the error suggests that for some reason $request->getParsedBody() fails. You could test this by doing var_dump($requested_scopes) in token.php line 22. It should look something like:

$requested_scopes = $request->getParsedBody();
var_dump($requested_scopes);

Now when you do the same curl request you should see something like:

array(1) {
  [0]=>
  string(8) "todo.all"
}

from slim-api-skeleton.

tuupola avatar tuupola commented on May 30, 2024

No feedback, closing. If problem still exists feel free to reopen.

from slim-api-skeleton.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.