shahidfoy
shahidfoy

Reputation: 2311

Unable to get valid auth token for cloud foundry api

I would like to use the cloud foundry api to get information about different apps running on the Pivotal Apps Manager.

When I run a GET request on https://api.[domain-to-look-into.com]/v2/apps I keep getting this response:

{
    "description": "Invalid Auth Token",
    "error_code": "CF-InvalidAuthToken",
    "code": 1000
}

I know I need some sort of Bearer Token but I am not sure how to generate that on a front-end application like angular. Does anyone know how to generate the Bearer Token and how to set up CRUD requests so I can get information from the cloud foundry api?

Upvotes: 0

Views: 741

Answers (1)

Dan Higham
Dan Higham

Reputation: 3984

I wrote this Chrome plugin to talk to CF using Angular a while back, it's probably a good place to start. It handles authentication too.

https://github.com/danhigham/chrome-cf-client

Upvotes: 1

Related Questions