0
votes
0answers
8 views

Syncing cookies from WebVew to HttpClient

For my app, I need the user to authenticate via a webpage and then use the new cookies in future HttpClient requests. I've been running cookieManager.getCookie("domain") in my WebView's onPageLoaded() ...
0
votes
1answer
19 views

Cookies does not seem to be set properly

I manage to log in and get cookies with respect to the session. But when I try to make a new request the login-information seems to be lost (the HTML-data is the same for both the requests. The second ...
0
votes
1answer
27 views

Why cookie is null?

I make an webserver with lamp(linux+apache+mysql+php).I want to set cookie to hold user information such as userid,username.So the load.php is like this: .... ///login successful session_start(); ...
0
votes
0answers
16 views

Android - Express.js cookie is not properly sent after being restored

I am working on an android app using the express.js framework on the server side. I have a problem getting persistent login to work. This is the start of the MainActivity's onCreate: protected void ...
0
votes
1answer
25 views

Cannot convert from BasicCookieStore to CookieStore

I am going to use cookies in my application so I don`t have to re-login for each requst I make to the server. Further on I have been looking on examples, and it seems that this is done in each of ...
1
vote
1answer
41 views

Android Asynchronous Http Client (loopj) and the Persistent Cookie Store

I am new to Android Development. Had a few questions on what is the best way to make the libraries mentioned above work optimally. Currently, I have three activities in my app. MainActivity, ...
0
votes
0answers
16 views

Why cookie returned by web server is none?

In my Android app, I'd like to fetch cookie for user login. HttpResponse response=client.execute(post); HttpEntity entity=response.getEntity(); ..... CookieStore mCookieStore = ...
0
votes
2answers
26 views

HttpPost request with cookies

I need to make two requests to the server. In the first request I send parameter userID = 1 and the server returns a cookie _session_ID. Now I send a second request with no parameters and the result ...
1
vote
1answer
48 views

How to send Cookie with HttpGet Url?

I'm trying to send Cookie with HttpGet Url. which Cookie Receive from my service(call by HttpGet), for Authentication I send it with Url but every time get error message "User must be ...
0
votes
0answers
39 views

Android 4.x Deletes My Cookies

I have an WebView Android application, that loads an local html file. In this file, I create a cookie using javascript. The application runs fine in Android 2.x. But in Android 4.x, the application ...
1
vote
0answers
26 views

Multiple Log-Ins on Separate WebViews? (Android)

I'm fairly new to Android development, and I have a question about how WebViews handle data (in Java). I'm assuming this would fall under the 'cookie' category. But what I have is two different ...
1
vote
0answers
41 views

Preserving session in HttpClient

I'm attempting to log into a wesbite. On my first request, I do a POST on the login page with the username and password and log in successfully. Using the same instance of HttpClient, I do a second ...
0
votes
1answer
26 views

Use PersistentCookieStore globally

I have a PersistentCookieStore and I want to use it globally so it means It writes cookies into it in login.java, and I want to perform requests with theese cookies in mainactivity.java How can I do ...
0
votes
1answer
60 views

How to handle cookies in httpUrlConnection using cookieManager

I have a server request that returns multiple cookies, like that: This is how I'm storing these cookies to the cookieManager: HttpURLConnection connection = ... ; static java.net.CookieManager ...
0
votes
0answers
49 views

CookieManager not saving cookies

When I execute the following code: CookieSyncManager.createInstance(activity); CookieManager cookieManager = CookieManager.getInstance(); cookieManager.setAcceptCookie(true); ...
0
votes
0answers
29 views

Android app about cookie in WebView

I have a httpURLConnection request URL, POST Login request. And when login success obtain cookies. I embed a WebView in app now, the WebView is used for loading a connection that can visit after ...
1
vote
1answer
87 views

JSoup BodyAsBytes connection to FileOutputStream to save temp file doesn't work?

I used JSoup to parse a website with cookies. I want to download a file from the website using JSoup and the cookies which were saved in a hashmap using this piece of code: Connection.Response res = ...
0
votes
0answers
79 views

Unable to set Cookie with httpclient Android

cookies are not being set , below is the code. DefaultHttpClient httpclient = new DefaultHttpClient(); HttpPost httpPostRequest = new HttpPost(URL); CookieStore cookieStore = new BasicCookieStore(); ...
0
votes
0answers
35 views

How NOT to share cache and cookies between WebViews

I have two WebViews that currently share cache and cookies. I'm looking for the easiest way to make them completely independent. Any idea?
0
votes
1answer
61 views

Creating BasicClientCookie

I need to store cookies to be able to keep session after closing application. To do that, I need to be able, to save cookie, and then recreate it. My current issue, is that I can't create ...
0
votes
0answers
45 views

Android using custom cookie for http post and get request

I have sucessfully post a cookie along with my HTTP GET and POST request.... But now I would like to use a custom cookie instead.... Can anybody help? THANKS!! This works fine: HttpGet request = ...
0
votes
1answer
73 views

Request doesn't used saved cookies in PersistentCookieStore

I fixed the crash and error in my app when I declared a cookie store, but it doesn't save the cookies or something went wrong at an other position. At first I call these 2 lines: AsyncHttpClient ...
0
votes
0answers
29 views

Android file: scheme cookies

I have a web app that I want host locally from an Android device. It requires for certain cookies to be set. I'm using the CookieManager to set the cookies on the webview but it appears to only work ...
0
votes
0answers
36 views

Android Parsing create cookie from a string or edit a cookie

Newbie to java and android... I would like to ask how to create a cookie from a string? I see that Android offers HttpCookie with parse function, but can anybody give a simple example on how to use ...
0
votes
2answers
75 views

What is best way to store user data in Android

I want to be able to store a user's id in my Android app so whenever the user accesses my app I can retrieve information that identifies the user and create a custom page for the user. I do this with ...
1
vote
0answers
195 views

Session in Android httpclient to Webview in Google App Engine

I followed Nick's tutorial in Authenticating agains App Engine from an Android App. I already have the tokens. How can I used this token to open the appengine site in the android webview? What i mean ...
0
votes
1answer
180 views

CookieManager.getCookie() returns null

I have some http requests. One of them retrieves and parse cookie from it's response. I save this cookie via CookieSyncManager and CookieManager with following code: ...
0
votes
0answers
27 views

In loopj, how will the client cookies submitted to a remote server

Use the Android Asynchronous Http Client ( loopj.com ) of the mobile phone client how cookies will be submitted to the remote server
0
votes
0answers
83 views

Android WebView forge Facebook cookie

I know user access_token in my android app. I want to open a page in a webview (like button). I don't want the user to be asked about login/pass in this page. Can i forge a cookie for my webview that ...
0
votes
1answer
241 views

Android CookieManager getCookie issue

I am setting a cookie using cookiemanager setcookie API, when I do cookiemanager getcookie I am not getting the domain & expiry date below is my code. String cookieString = cookie.getName() + ...
0
votes
0answers
67 views

Cookie on Android 2.2 is not available in WebView

I made a Android App with minimum required API 8. The users are authenticated on my backend with a cookie. This works on every device that has an api level 9 or higher. The Cookie is saved with ...
3
votes
2answers
191 views

Android: Using Cookies in HTTP Post request

I'm having some issues with getting myself authenticated with my server. It works when I manually try to set cookies through a Google plugin like Postman but does not work when it is done through an ...
0
votes
0answers
113 views

How to get two cookies back from jquery getResponseHeader('Set-Cookie') for Android

I am implementing an Android app that sends requests to a web server using PhoneGap. Before sending other requests, the app first has to send an authentication request to the web server, and the ...
0
votes
1answer
65 views

android: how to access browser cookie from within app's webview

let's say I visit some dedicated website www.mysite.com, that placed a cookie in my browser. later, I want to use that cookie from within some app that opens a webview to the same website, so I can ...
1
vote
0answers
50 views

Cookies expiring too fast on android

I'm running a php website that keeps track of scores when a live card game is played. I'm using cookies to store variables like player names that last for 1 hour and are re-set every time a new score ...
7
votes
1answer
883 views

“Cookies not enabled error” on some devices

I am working on an app that uses Facebook as an alternate login method to the app's standard account creation flow. On some devices, the web dialog authentication for Facebook is producing the error ...
2
votes
1answer
104 views

Do Mobile apps need to comply to the EU Cookie Law? [closed]

I've had an interesting question from a client regarding the EU cookie law and how it affects their mobile apps. As you may well know, the Cookie Law requires websites to let users know that the ...
-2
votes
1answer
132 views

HTTPRequest Cookie [closed]

Why won't this work? I have tried a lot but I can't find out why this isn't working. The script gets the cookie from my webview, that is working but when I try to send te cookies with the request it ...
0
votes
0answers
35 views

Read Android cookies from php

I'm writing and Application for android and I'll use cookies ir session to manage the login to a forum. From Android device I send post data to the login forum and this is ok. The forum receives the ...
3
votes
0answers
208 views

android how to share Cookies between DefaultHttpClient and WebView

how to share Cookies between DefaultHttpClient and WebView???? It took me one week to solve sharing Cookies between DefaultHttpClient and WebView, I searched lots of posts in stackoverflow, tried a ...
0
votes
1answer
66 views

Android JSONParser, httpclient and cookies

Ok, so I know this has been asked a million times before and I've read most of the posts and answers but it's been a long day and my brain is fried and I just cannot get it to work ... I have an ...
2
votes
0answers
32 views

Android How to save cookies on sdcard using HttpClient

I need to know a way to store my HttpClient cookieStore on a txt file as a string and how to re-use those and make a new httpConnection. httpclient=new DefaultHttpClient(); cookieStore = new ...
-4
votes
2answers
108 views

How to get cookies while browing from the android mobile programmatically? [closed]

I want to get the browser cookies from the android application programmatically. I got a link for one application (.apk) through one customer(i.e. website). The link will redirect me to the ...
0
votes
1answer
133 views

Cookie corruption with multiple createHTTPClient Titanium calls

While creating an Android app in Appcelerator's Titanium that involves both webView and background calls, I ran into a problem / bug where the cookies were getting corrupted on multiple ...
0
votes
0answers
70 views

Using Cookies received in the WebView for Http calls

I have an application where I am using the webview to go to a website to perform authentication. Once I get authenticated I receive 2 cookies which I need to save and use these cookies when I make ...
0
votes
0answers
60 views

Connecting to a specific website hosted server - Android, Java

I am working on an Android Application that parses out a .mp4 link from a website. The parsed link then plays via VideoView. The problem is that it connects to different servers that host the videos, ...
2
votes
1answer
271 views

Android httpclient login and use cookies for further processes

I am developing an app which includes logins activity and main activity. If the user login for the first time, the app saves username and pass in sharedPrefs. And on the next startup, login activity ...
0
votes
1answer
126 views

why the cookies of cookieManager is differenet from cookies of httpClient In Android?

I'm writing a program for Android that sends some POST to a webService with HttpClient like this : DefaultHttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new ...
1
vote
3answers
169 views

Request from android against app engine server fails (401)

I'm doing authentication of android app against an app engine server, basically following this post: http://blog.notdot.net/2010/05/Authenticating-against-App-Engine-from-an-Android-app. It appears ...
0
votes
1answer
71 views

I get a cookie that contains a Session Token from my Login WS call ?

It always gives me the login page, as a response, because, it doesn't see me as logged in. This is the code for my POST method ( i call it both on the login and other web services): protected ...

1 2 3 4 5 6