First time API user. So far, I've registered for a simple application (redirect url http://localhost). I've received a clientid and client secret pair.
I've been trying to invoke a set of simple APIs to try out. I've run some sample curl commands below.
# Create Folder
curl https://api.box.com/2.0/folders \
-H "Authorization: Bearer p3xjupq2ogfksc05l4yw8kjney6pxq9j" \
-d '{"name":"jjd_folder", "parent": {"id": "0"}}' \
-X POST
# Get Folder info
curl https://api.box.com/2.0/folders/jjd_folder -H "Authorization: Bearer p3xjupq2ogfksc05l4yw8kjney6pxq9j"
These commands don't throw any errors but they also don't produce and responses back, so I'm not sure what I'm doing wrong.
The token p3x....9j is my client secret. I've tried generating a Developer Token but that token always results in 401 security exception so I've stopped using it.
Please help get me started.

