JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #2641  
Old 19.06.2018, 19:22
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

Site requires login and vk has changed api to *not yet supported* oauth, that's why it fails
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2642  
Old 19.06.2018, 22:22
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

A similar problem with "user profiles". Can you fix it quickly (VERY EASY)
Example problematic link:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
You should only find a similar link in the source
**External links are only visible to Support Staff****External links are only visible to Support Staff**
OR
**External links are only visible to Support Staff****External links are only visible to Support Staff**



19.06.18 21.17.39 <--> 19.06.18 21.20.53 jdlog://4258954433151/
Reply With Quote
  #2643  
Old 19.06.2018, 22:27
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

and... change to:
**External links are only visible to Support Staff****External links are only visible to Support Staff**

Source VK:
<aside aria-label="Photo">
<div id="page_avatar" class="page_avatar"><a id="profile_photo_link" href="/photo235113183_456240251" onclick="return showPhoto('235113183_456240251', 'album235113183_0/rev', {&quot;temp&quot;:
Reply With Quote
  #2644  
Old 20.06.2018, 10:18
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

@djmakinera: as long as plugin doesn't support new oauth, nothing will help
from log, User authorization failed: no access_token passed
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2645  
Old 20.06.2018, 10:52
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

In this case, "oauth" is not required because "idXXXX"(PROFILE USER) works fine (decrypts correctly), in the page source there is an id for user's albums.
My request is to change the current nickaname to idXXXX.
Eg.
vk.com/nickname to vk.com/idXXXX or /albumsXXXX
As I remember, he did pspzockerscene, so maybe you can do it.
Example:
vk.com
view-source:**External links are only visible to Support Staff****External links are only visible to Support Staff**
Source page: Find example: oid: 5592362}

id1 = albums1 etc.

**External links are only visible to Support Staff****External links are only visible to Support Staff** CHANGE TO **External links are only visible to Support Staff****External links are only visible to Support Staff** (work decrypt)

============================
The second issue

Code:
User authorization failed: no access_token passed.","request_params":[{"key":"oauth","value":"1"},
Solution:

Quote:
Need get access_token and send it in params
API:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2646  
Old 20.06.2018, 12:06
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

So wait for pspzocker to work on the plugin then
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2647  
Old 20.06.2018, 12:29
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

This script changes nickname to id So you can implement it?

Code:
javascript: var arr=bodyNode.innerHTML.match(/uiPhotoZoom.over\([^\(\)\d]+(\d+)/g); var ids=[]; for (var i=0; i<arr.length; i++){ ids.push(arr[i].match(/uiPhotoZoom.over\([^\(\)\d]+(\d+)/)[1]); }; bodyNode.innerHTML='**External links are only visible to Support Staff**+ids.join('<br>**External links are only visible to Support Staff**); void(0);
Reply With Quote
  #2648  
Old 20.06.2018, 12:42
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

I'm not working on the plugin, so wait for pspzocker to have time again
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2649  
Old 20.06.2018, 12:43
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Or this script replace the names (nickname) with IDXXXX (work decrypt), but it needs to be fixed because it does not work (no longer), probably.

Code:
vk_pages.parse_screen_names=function(list){
   var PER_REQ=100;
   var offset=0;
   var links=[];
   var oid=null;
   var type='owner_id';
   var lid=0;
   var abort=false;
   if (oid) list.push(oid);
   function next(){
      offset=0;
      if (lid>=list.length) {
         var to_file=isChecked('links_to_file');
         vkSetVal('vk_collect_links_to_file',to_file?'1':'0');
         ge('vk_links_container').innerHTML='<h2>count: '+links.length+'</h2><textarea style="width:590px; height:300px;">'+links.join('\n')+'</textarea>';
         if (to_file)
            vkSaveText(links.join('\n'),("ids_list_"+list.length).substr(0,250)+".txt");
         return;
      }
      oid=list[lid]+'';
      oid=oid.split(/\?|#/)[0].split('/').pop().replace(/[^a-zA-Z0-9_\.]+/g,'');
      if (!oid || oid==''){
         lid++;
         next();
      } else {
         scan();
         lid++;
      }
   }
   
   function scan(){
      if (abort) return;
      dApi.call('utils.resolveScreenName',{screen_name:oid},function(r){
         if (abort) return;
         var data=r.response;
         if (r.error){
            ge('vk_scan_log').innerHTML+='Scan error. <b>'+oid+'</b> ('+r.error.error_msg+'). Skip...<br>';
            next();
            return;
         }
         var lnk='**External links are only visible to Support Staff**;
         switch (data.type){
            case 'user':
               lnk+='albums'+data.object_id+'?profile=1';
               break;
            case 'group':
               lnk+='wall-'+data.object_id+'?own=1';
               break; 
            case 'page':
               lnk+='wall-'+data.object_id+'?own=1';
               break;    
            case 'event':
               lnk+='wall-'+data.object_id+'?own=1';
               break;                  
            case 'application':
               lnk+='app'+data.object_id;
               break; 
            default:
               lnk=data.type?'**External links are only visible to Support Staff**+data.type+data.object_id:'Not found: '+oid;
         }
         links.push(lnk);
         ge('vk_links_container_progr').innerHTML=(list.length>1?vkProgressBar(lid,list.length,600):'');
         next();
      })
   }
   
      var html='<div id="vk_links_container"><div id="vk_links_container_progr"></div>'+
               '<br><div class="checkbox'+(vkGetVal('vk_collect_links_to_file')=='1'?' on':'')+' fl_l" id="links_to_file" onclick="checkbox(this);"><div></div>Save links list to file after scan</div><br><div id="vk_scan_log"></div></div>';
   var box=vkAlertBox(IDL('Links'),html,function(){abort=true;});
   box.setOptions({width:"640px"});
   next();
}
vk_pages.scan_links_list_box=function(){
   var html='<textarea id="vk_links_list" style="width:560px; height:300px;"></textarea>';
   
   var aBox = new MessageBox({title: IDL('Enter_links')});
   aBox.removeButtons();
   aBox.addButton(getLang('box_cancel'),aBox.hide, 'no')
   aBox.addButton('OK',function(){  
      var links=ge('vk_links_list').value;
      links=trim(links).split(/\s*[\r\n,]+\s*/);
      aBox.hide();
      if (links.length==0){
         alert('List is empty...');
      } else {
         vk_pages.parse_screen_names(links);
      }
   },'yes');
   aBox.content(html);
   aBox.setOptions({width:"600px", onHide:function(){aBox.content('');}});
   aBox.show();
}
vk_pages.scan_links_list_box();
Reply With Quote
  #2650  
Old 20.06.2018, 12:45
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Well I'll wait, but unfortunately, it lasts a long time (the 2 year)
Reply With Quote
  #2651  
Old 21.06.2018, 00:42
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Question about advanced settings of the VK plugin.
Please tell me which exact setting should I enable to detect and decrypt only the vk link to the profile?

Example link:

**External links are only visible to Support Staff****External links are only visible to Support Staff**

Screenshot:
https://postimg.cc/image/6pnarv15d/
Reply With Quote
  #2652  
Old 21.06.2018, 10:56
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

Wait for return of pspzocker. It's his plugin, he can tell you
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2653  
Old 21.06.2018, 16:10
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

I tested all advanced options, but without success, it only detects photos, etc., but not links. It seems to me that dev should add a new option to detect secondary links in posts. I am waiting impatiently for pspzockerscene.
Reply With Quote
  #2654  
Old 18.07.2018, 18:07
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default Max. simulaneous not work (if MANY errors) SLOW DOWNLOAD

Max. simulaneous not work (if error) SLOW DOWNLOAD


This bug occurs many years.
After all errors have been achieved (can not resume downloading even though the picture is available) only the restart helps.
Download System 2.0???
But this limits the maximum number of photo downloads, and as you know, only the maximum number increases simultaneous the maximum speed (SMALL FILES *.jpg). He gets all day and it's slow going. I am asking for repairs or automatically DISABLE MANY repeating errors.
Reply With Quote
  #2655  
Old 18.07.2018, 18:09
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default EDIT: Max. simultaneous (add screenshot)

EDIT: Max. simultaneous (add screenshot)

https://s22.postimg.cc/4fgcrbyfl/Scr...t_04.32_PM.jpg
Reply With Quote
  #2656  
Old 19.07.2018, 09:34
sick2k5 sick2k5 is offline
Super Loader
 
Join Date: Jul 2011
Posts: 25
Default

when i go to biqle.com and copy the url from the vk embedded video with downloadhelper, it gets collected by jdownloader and it is downloaded, but without proper filename....

but it works this way....


but sending all files from one page to JD does not work :-/

some embedded links go to daxab.com some to crazycloud.ru

maybe i should add a vk account with login data?

Last edited by sick2k5; 19.07.2018 at 09:42.
Reply With Quote
  #2657  
Old 19.07.2018, 15:35
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

How about posting a log? Screenshot shows many *temp unavailable* and just by screenshot I would say that serverside blocks too many concurrent downloads.
This has nothing to do with download system
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2658  
Old 20.07.2018, 12:03
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Nothing blocks, I always downloaded many simultaneous downloads, I just can not resume downloading and I am trying to download Starting Download (over and over again). This is an old error that I have already reported.

Sometimes Resume = not work (Starting Resume Starting Resume Repeat ACTION) BUG
Restart link = work
20+ simultanesous VK download = always support (not block)
Reply With Quote
  #2659  
Old 20.07.2018, 12:04
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Please fix bug resume *jpg file:

20.07.18 11.02.10 <--> 20.07.18 11.02.30 jdlog://0140164433151/
Reply With Quote
  #2660  
Old 20.07.2018, 15:44
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

Log does not contain a single error.
Please provide a log that shows the *not resume* issue. Please note that not all images can be resumed! Some servers do transparent caching/others have transparent cloudflare image compression, resuming those links have high chances of broken download/image

So please provide a log that contains the issue, then I can tell more
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2661  
Old 20.07.2018, 16:04
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Even if you can not resume, how will the maximum downloads pool run out, download only one file at a time, which causes a terrible slowdown in downloads.
How to limit repetition of the same errors and still increase simultaneous downloads. This is important for downloading download.
Reply With Quote
  #2662  
Old 20.07.2018, 16:45
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Only manual restart allows to download 100% of the file, but I will not be spending non-stop on guarding the downloads, which should be restarted, this is a super-strenuous activity and terribly idiotic.

How to automatic restart if STOP resume???
Reply With Quote
  #2663  
Old 20.07.2018, 17:43
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Quote:
please provide a log
The log is not always current if it contains new data, without errors, I have sent only all existing logs.
I need to connect a new drive and again download it for new errors. You have to wait.
Reply With Quote
  #2664  
Old 20.07.2018, 23:56
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

How to completely ignore such links. Recognizing that the photo is deleted, instead of repeating that is temporarily unavailable???

Source:
**External links are only visible to Support Staff****External links are only visible to Support Staff**

direct link:
**External links are only visible to Support Staff****External links are only visible to Support Staff** (Page Not Found)
Reply With Quote
  #2665  
Old 27.07.2018, 11:50
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

It is a pity that you can not help, I know that pspzockercene (2 years) and raztoki nothing :( :(. Although you are present in the forum.

Last edited by raztoki; 28.07.2018 at 02:23. Reason: removed ot
Reply With Quote
  #2666  
Old 28.07.2018, 02:27
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,611
Default

@djmakinera
feel free to spend 3 years to learning programming and then you can fix issues for yourself and others in your limited spare time.

Sorry to say I don't have time to fix VK issues at this point.

raztoki
__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]
Reply With Quote
  #2667  
Old 31.07.2018, 17:05
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Just turn off the stupid "Temporarily unavailable": Even give this service in advanced settings." You do a lot.

My super friend said:
Dead server or broken file

However, some image files can not be resumed, I do not know why. Only restart helps (ie downloading from the beginning)


Is it difficult to solve????
Reply With Quote
  #2668  
Old 01.08.2018, 12:25
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

Quote:
Originally Posted by djmakinera View Post
Just turn off the stupid "Temporarily unavailable": Even give this service in advanced settings."
Not knowing/understanding what *Temporarily unavailable* is and why it happens but want to disable it...Sounds like a great idea. So you want it to replace with *plugin defect* of *file offline*......
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2669  
Old 01.08.2018, 16:06
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Quote:
So you want it to replace with *plugin defect* of *file offline*
Exactly. Yes.Please, do it.
It will not work link anymore because Dead server or broken file!
Reply With Quote
  #2670  
Old 01.08.2018, 16:14
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,290
Default

Please provide a log for this case and I will check the plugin
__________________
JD-Dev & Server-Admin
Reply With Quote
  #2671  
Old 01.08.2018, 17:36
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

01.08.18 16.35.31 <--> 01.08.18 16.36.17 jdlog://5055164433151/

Error Type 1:
**External links are only visible to Support Staff****External links are only visible to Support Staff**

Error Type 2:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2672  
Old 02.08.2018, 14:36
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Check the previous log and this new log, why can not resume downloading even though it should be possible!!!

Starting... Download (multiple repetition of the same action)
Code:
Resume failed --> Retrying from zero
02.08.18 13.33.33 <--> 02.08.18 13.37.58 jdlog://5285164433151/

**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2673  
Old 02.08.2018, 14:38
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

also please fix this bug:

----------------Response------------------------
HTTP/1.1 416 Requested Range Not Satisfiable (Resume failed)
Reply With Quote
  #2674  
Old 04.08.2018, 07:52
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Quote:
Originally Posted by Jiaz View Post
Log does not contain a single error.
Please provide a log that shows the *not resume* issue. Please note that not all images can be resumed! Some servers do transparent caching/others have transparent cloudflare image compression, resuming those links have high chances of broken download/image

Domain pp.userapi.com - direct link to servers with photos. Other domains - cache-servers


I will try to change in advanced settings (final download link)
Reply With Quote
  #2675  
Old 04.08.2018, 07:56
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Jiaz - Advanced Setting Plugin VK

Please update the server (enable change)
Currently, pp.vk.me change to pp.userapi.com

It should work resumption of photo downloading
Reply With Quote
  #2676  
Old 04.08.2018, 09:49
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Please fix it, because the old server is no longer working (out of date).
The current server is pp.userapi.com

Screenshot:
https://postimg.cc/image/esyj4izkt/

Code:
java.lang.Exception: createOfflinelink
Example link:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2677  
Old 29.10.2018, 19:39
Viperdriver2000
Guest
 
Posts: n/a
Default

Hi,
i have a problem too.

i want to download:
**External links are only visible to Support Staff****External links are only visible to Support Staff**

here is the log:
29.10.18 18.18.05 <--> 29.10.18 18.18.00 jdlog://2902564433151/
Reply With Quote
  #2678  
Old 07.11.2018, 19:08
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default VKontakteRuHoster has static field: match with null content!

Code:
VKontakteRuHoster has static field: match with null content!
Do not decrypt 5 music tracks contained in the album on the wall.
The link is only available from the search level, so I am asking for such link support.

07.11.18 18.03.52 <--> 07.11.18 18.06.37 jdlog://1195564433151/

**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2679  
Old 07.11.2018, 19:21
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Download does not work, an error indicating that the account is missing

07.11.18 18.03.52 <--> 07.11.18 18.19.51 jdlog://7195564433151/
**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #2680  
Old 27.12.2018, 06:17
svagebeast svagebeast is offline
Bandwidth Beast
 
Join Date: Nov 2014
Posts: 144
Default

Even after several months I STILL cannot log onto vk.com (vkontakte.ru) with jdownloader... this has been VERY frustrating!

Here is a log of my recent attempts... I hope it helps.
22.12.18 05.56.54 <--> 26.12.18 22.13.32 jdlog://5440476935451/
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 12:52.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.