#1
|
|||
|
|||
![]()
hi , may i ask for adding account on this site
**External links are only visible to Support Staff****External links are only visible to Support Staff** Thanks alot |
#2
|
||||
|
||||
![]()
Hi,
the chances of this happening are super low. Please read: https://support.jdownloader.org/Know...orted-websites and: https://support.jdownloader.org/Know...aming-websites
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#3
|
|||
|
|||
![]()
@navmesh: Should be possible with help of Linkcrawler Rules, see https://support.jdownloader.org/Know...kcrawler-rules
One DEEPDECRYPT rule that parses the /models/number/... link and finds the embedded download from /api/download/models/number. And another DIRECTHTTP rule that provides support for the embedded download links Please try by yourself first and in case of questions, just ask here |
#4
|
|||
|
|||
![]() Quote:
**External links are only visible to Support Staff****External links are only visible to Support Staff** if i 'm not wrong, this mean to access those contents i have to add my account to jdownloader Last edited by navmesh; 11.04.2023 at 20:02. |
#5
|
||||
|
||||
![]() Quote:
It's all explained here: https://support.jdownloader.org/Know...awler-rules/22
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#6
|
|||
|
|||
![]() Quote:
https://support.jdownloader.org/Know...your%20cookies. Last edited by navmesh; 11.04.2023 at 21:45. |
#7
|
||||
|
||||
![]()
No you need to use our proprietary key/value cookie format.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#8
|
|||
|
|||
![]()
Thanks , can you please tell me how to get that site's cookie in proprietary key/value cookie format like you said?
|
#9
|
||||
|
||||
![]()
Well...get the keys and values of your cookies and put them in the format as displayed in the LinkCrawler article as an example:
Quoting the article: Code:
"cookies": [ [ "key1", "value1" ],[ "key2", "value2" ] ]
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download Last edited by pspzockerscene; 12.04.2023 at 12:07. Reason: Enhanced example json |
#10
|
|||
|
|||
![]()
thank you very much , i will try it
|
#11
|
|||
|
|||
![]()
@navmesh: In case you need further help, just ask
![]() |
#12
|
||||
|
||||
![]()
@navmesh
I've updated some examples in our LinkCrawler rules help articles and also included the new "cookies" json array example in them.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#13
|
|||
|
|||
![]()
Thank you very much ,
im using "edit this cookie" extension to retrieve the key value of cookie https://chrome.google.com/webstore/d...omclgfbg?hl=en when i export cookie as json, i have the "value" field if i 'm not wrong , we just copy the "value" content in the json box to "value" field of Jdownloader but i dont know where i can get the key field can you please help Thanks |
#14
|
||||
|
||||
![]()
Mapping of fields from EditThisCookie to JDownloader LinkCrawler rule "cookies" syntax:
name -> key value -> value
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#15
|
|||
|
|||
![]()
i see, thank you very much for the help
|
#16
|
||||
|
||||
![]()
No worries.
We got an internal ticket to add support for cookie import from editthiscookie and other sources for LinkCrawler Rules but at this moment that's not possible. Here is that ticket:
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#17
|
|||
|
|||
![]()
Hi again, i try entering link crawler rule with my cookie from editthiscookie
i check many times but i haven't found where my mistake is, i think my cookie format is already in this format ,so i dont know what cause this error HTML Code:
"cookies": [ [ "key1", "value1" ],[ "key2", "value2" ] ] because my link crawler rule contains cookie, may i send the deep crawler rule through your inbox ? Thanks alot |
#18
|
|||
|
|||
![]()
Send it to support@jdownloader.org and we'll take a look at it and fix it/tell you where the mistake happens. most likely just some json formatting issue, but we'll see
![]() You may contact us earlier if you're stuck! no need to spend hours/days/weeks! just ask for help/hint ![]() |
#19
|
|||
|
|||
![]() Quote:
I have no idea why it cause list error, i check json format on jsoneditoronline and it still correct Thanks alot |
#20
|
|||
|
|||
![]()
@navmesh: I was able to copy/paste the rule from your text file as it is without any problem. Opened the txt file, select and copy and paste to JDownloader.
You paste it into Settings->Advanced Settings->LinkCrawler.linkcrawlerrules ? JDownloader with GUI or MyJDownloader? Pay attention that othing else is copied to clipboard, maybe something invisible at the end, eg tabs or something like that |
#21
|
|||
|
|||
![]() Quote:
Thanks Last edited by navmesh; 23.04.2023 at 20:21. |
#22
|
|||
|
|||
![]()
@navmesh: I recommend to use a json formatter/validator, for example
jsonformatter.org that will show you that the json is wrong formatted and contains errors and where the error might be. I've sent you the corrected ones by mail |
#23
|
|||
|
|||
![]()
i see it now, thank you very much for the help
|
#24
|
|||
|
|||
![]() |
#25
|
|||
|
|||
![]() Quote:
i sent the mail that describe more clearly and contains link grabber rule and cookie , which not works, can you please help Thanks |
#26
|
||||
|
||||
![]()
Here is an example rule which works for "civitai.com/images/...?..." and will grab single images:
Code:
[ { "enabled": true, "logging": false, "maxDecryptDepth": 1, "name": "example rule for civitai.com single images", "pattern": "**External links are only visible to Support Staff**, "rule": "DEEPDECRYPT", "packageNamePattern": null, "passwordPattern": null, "deepPattern": "src=\"(**External links are only visible to Support Staff**]+)\"[^>]*style=\"max-height:100%;max-width:100%\" " } ] pastebin.com/raw/qHHiLfGt This rule will only work for public content - you will need to add your login cookies to it to be able to download content which can only be viewed when logged in!
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download Last edited by pspzockerscene; 24.04.2023 at 18:03. Reason: Added info that this rule wil only work for public content. |
#27
|
|||
|
|||
![]() Quote:
I tried your rule with the link (which is public link) with your rule ,include and not include my cookie **External links are only visible to Support Staff****External links are only visible to Support Staff** i paste the link into "link grabber" tab but it cannot grab anything i also try to disable my link grabber filter but its still not work |
#28
|
||||
|
||||
![]()
You're right.
I've updated my previous post (also the pastebin text). Only a minor change of the "deepPattern" was needed to make this work for other/all items.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#29
|
|||
|
|||
![]() Quote:
it says pastebin.com unexpectedly closed the connection. i tried another computer (on other modem) and it have the same problem can you please upload to another host ? Thanks alot |
#30
|
||||
|
||||
![]()
Maybe your ISP is dns-blocking pastebin.com?
Or a firewall/AV application is blocking? Here it is as .txt file: workupload.com/file/hYWNwfuadxJ
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#31
|
|||
|
|||
![]()
Thank you very much ,it works
|
#32
|
||||
|
||||
![]()
Thanks for your feedback.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#33
|
||||
|
||||
![]()
Added simple plugin for civitai.com which at this moment is able to download single images.
More information: https://board.jdownloader.org/showthread.php?t=94252 Thread closed. Please continue in the other thread I linked.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download Last edited by pspzockerscene; 11.09.2023 at 15:48. Reason: Fixed typo |
![]() |
Thread Tools | |
Display Modes | |
|
|