takimafr / androidkickstartr

AndroidKickstartR helps you to quickly create a well configured Android application using the most popular libraries. It creates and configures your project for you. Just focus on code!
http://androidkickstartr.com
Other
608 stars 116 forks source link

Send POST data with rest #99

Closed bperin closed 11 years ago

bperin commented 11 years ago

Is it possible to send post data as key value pairs along with a POST request? I can't seem to figure it out.

So I could do something like

@Rest(rootUrl = "http://domain.com/", converters = StringHttpMessageConverter.class)
public interface RestClient {

@Post("/login")
Session forceLogin(String email,String Password);
}
a-thomas commented 11 years ago

Your question is more related to https://github.com/excilys/androidannotations . Feel free to ask questions on the google group or if it's an error on the github issues.