Home | History | Annotate | Download | only in samplesyncadapter_server

Lines Matching refs:request

58     Process a request to authenticate a client.  We assume that the username
59 and password will be included in the request. If successful, we'll return
67 self.username = self.request.get('username')
68 self.password = self.request.get('password')
87 Validate the credentials of the client for a web service request.
88 The request should include username/password parameters that correspond
95 self.username = self.request.get('username')
96 self.authtoken = self.request.get('authtoken')
114 request to include username and password fields. It returns authtoken
130 request to include username and authtoken. If the authtoken is valid
145 # Process any client-side changes sent up in the request.
150 client_buffer = self.request.get('contacts')
156 client_state = self.request.get('syncstate')
169 base_url = self.request.host_url
221 base_url = self.request.host_url
303 Handles cron request to reset the contact database.