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

I seem to be missing something in the documentation and examples I'm reading. I'm in the process of making some of our private API calls into public API calls and would also like to make a easy to use java library to access the api. I'm using Spring 3 Restful web services and would like to do something like this in the end...

APIService service1 = new APIService("joe's api key");
List joesThings = service1.getThings(); // only returns joe's things.
asertTrue( joesThings.size() == 4, "Joe should have 4 things" );

APIService service2 = new APIService("bob's api key");
List bobsThings = service2.getThings(); // only returns bob's things.
asertTrue( bobsThings.size() == 5, "Bob should have 5 things" );

My question is what is the best practice on handling where to inject the API key.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.