Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a service which requires authentication.

I would like to base the authentication on my redmine and grant access to registered users which are members in a private project.

The membership I have figured out:

curl -v -u account:secret \
https://myredmine/projects/private/memberships.json

But how to find out if a user can authenticate?

share|improve this question

2 Answers

Use /users/current.json

curl -v -u account:secret \
https://myredmine/users/current.json

it will return 401 if the user fails to login

add ?include=memberships to the URL to retrieve a list of associated projects

I don't think it will work with Open ID though.

share|improve this answer

Why don't you used the built in API? You can enable it for each user, once you get the key:

// pseudo-code
api_key = '65454ftfg53543f34g34f23g'
url = "http://www.myredminesite.com/projects/my_project/issues.json?key=" + api_key

You can enable the API key if you login and click on "My Account", then on the right should be your API access key.project

EDIT: there where some issues with older version i think, i run Redmine 2.1.2.stable and that works great.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.