You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, im currently parse website that require authentication for access to some content.
So I log in with browser, copy all created cookies and add them with each parse request.
That works like a charm until website change cookies in response - short after this my cookies are invalid and we dont receive desired response.
When I was looking for access to the response headers information like "set-cookie", I found this:
public final class RequestCoreHandler
public String getResponse() {
response = resp.getResponseBody();
**
**
return response;
}
As i see we dont have any access to response information therefore we can't react to website response changes by any way except of response body.
Can we have access to other response information? Because in our case - we need it to correct following parse requests by headers (set-cookie), received in response.
What do you think about it? (if you want me to change it by myself - give at least some advice please).
The text was updated successfully, but these errors were encountered:
Sorry about that delay, I'm not using that account too often now, I use another github account.
Happy to see that you're using this library and want to contribute!
I kinda lost the accesses to the maven and sonatype accounts since the company I published this library for is now closed. Thus I can't release a new version.
However, I'd be happy to have have your PR, review it and approve it.
Eventually, I'm thinking of deploying this library with github package https://github.com/features/package-registry
It's free for open source, and we could auto deploy new versions of the library with some free CI plugin (free for open source projects as well), using github secrets. I don't know how exactly, but I know this is do-able.
But I'm not sure I have the availability to do it at the moment.
Let me know if you're still interested in helping !
Thanks for your interest in this project once again!
Sry for so late response - had a lot of work..
This project - is the best solution for scrapping data with java/spring that i managed to find.
So its sure worth developing and supporting.
So what we begin from?
Id like to compare your vision of scrapper tasks queue workflow that this library is designed for - with mine.
About git CI - worked with it, but dont configured it myself - dont think that will be too hard.
Maybe it will be more comfortable to use some messenger?
email: [email protected]
Hi, im currently parse website that require authentication for access to some content.
So I log in with browser, copy all created cookies and add them with each parse request.
That works like a charm until website change cookies in response - short after this my cookies are invalid and we dont receive desired response.
When I was looking for access to the response headers information like "set-cookie", I found this:
As i see we dont have any access to response information therefore we can't react to website response changes by any way except of response body.
Can we have access to other response information? Because in our case - we need it to correct following parse requests by headers (set-cookie), received in response.
What do you think about it? (if you want me to change it by myself - give at least some advice please).
The text was updated successfully, but these errors were encountered: