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,342
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,451
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,451
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,342
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,451
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,342
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,451
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,342
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,451
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,451
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,451
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,342
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,451
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,451
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,451
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,342
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,451
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,451
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,342
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
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 10:46.
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.