ApiKey is used to control the usage and it is affixed as an url parameter (implemented using somewhat modified version of this solution). Question is, how to go about appending this parameter when consuming the API through the use of the ServiceReference in Visual Studio?

link|improve this question
feedback

2 Answers

It seems to work just fine if you use the full URL to the $metadata in the Add Service Reference dialog in VS. So for example http://services.odata.org/OData/OData.svc/$metadata?apiKey=1234 works, and it does send the query string as specified.

link|improve this answer
feedback

I've found the answer on social.msdn.com. Basically, you need to use the AddQueryOption method of a resource proxy, like:

SomeService.SomeResource.AddQueryOption("apikey", "1234")

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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