question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

  • Ripme version: 1.7.95
  • Java version: 18.0.1.1
  • Operating system: Windows 11

Expected Behavior

Expected it to download the MP4

Actual Behavior

Detail the actual (incorrect) behavior here. You can post log snippets or attach log files to your issue report. Seems the query string may have changes, all Redgifs links error in the same way

Issue Analytics

  • State:open
  • Created a year ago
  • Comments:40

github_iconTop GitHub Comments

1reaction
CypherpunkSamuraicommented, Oct 21, 2022

I was kinda busy, I can’t complete rewriting the whole module. Here’s the code, it needs a refactor bytheway:

public static void getToken() throws IOException {
        LOGGER.info("Fetching AUTH_TOKEN for " + HOST);
        
        //String i = "index.0a3f050b.js";
        String i = "";
        
        if (AUTH_TOKEN != "") {
            LOGGER.info("AUTH_TOKEN already exists. AUTH_TOKEN is " + AUTH_TOKEN);
            return;
        }
        // Fetches AUTH_TOKEN for future requests
        Document h = Http.url("https://" + HOST).ignoreContentType().get();
        Matcher hm = Pattern.compile(".*(index.*?js).*", Pattern.DOTALL).matcher(h.toString());
        if (hm.matches()) {
            i = hm.group(1);
        } else {
            return;
        }
        // Read Token
        Document j = Http.url("https://www." + HOST + "/assets/js/" + i)
                .header("User-Agent", "Mozilla (Webkit)")
                .header("Referer", "https://" + HOST)
                .ignoreContentType()
                .get();
        Matcher jm = Pattern.compile(".*(eyJ0.*?\").*", Pattern.DOTALL).matcher(j.toString());
        if (jm.matches()) {
            AUTH_TOKEN = jm.group(1).replace("\"", "");
            LOGGER.info("Authtoken: " + AUTH_TOKEN);
        } else {
            return;
        }
    }
1reaction
CypherpunkSamuraicommented, Sep 8, 2022

The Current CI’s are failing, I don’t thing the source code is in a working condition yet.

https://github.com/RipMeApp/ripme/actions

I’ll open a PR once the source code is fixed

Edit: Or I could make a new project

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to Fix RedGIFs not working December 2022 - Officialroms
RedGIFs aren't working? Here's what to do if they're not loading in your browser this December of 2022! redgifs not working & not...
Read more >
Redgifs error : r/apolloapp - Reddit
Redgifs error · Nautical context, when it means to paint a surface, or to cover with something like tar or resin in order...
Read more >
RedGIFs not working, How to fix it? - GetDroidTips
RedGIFs not working, How to fix it? · Try to Reload Your Page · Clear browser cache files · Try using a different...
Read more >
How to Fix RedGIFs Not Working and Loading Problem
2.1 Reload The RedGIFs Page (web users only) · 2.2 Make Sure To Disable Adblocker · 2.3 Clear Cache Files · 2.4 Flush...
Read more >
Frequently Asked Questions - RedGIFs
If the Upload has failed it will first appear 'stuck' before displaying the upload failure reason. What is the maximum file size for...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found