Session v1.18.2版本的 MD5 值为:92ce129e957021e1a845dcaca5ce957d

以下内容为反编译后的 GiphyStickerLoader.java 源代码,内容仅作参考


package org.thoughtcrime.securesms.giph.net;

import android.content.Context;

public class GiphyStickerLoader extends GiphyLoader {
    public GiphyStickerLoader(Context context, String str) {
        super(context, str);
    }

    @Override
    protected String getTrendingUrl() {
        return "https://api.giphy.com/v1/stickers/trending?api_key=3o6ZsYH6U6Eri53TXy&offset=%d&limit=" + PAGE_SIZE;
    }

    @Override
    protected String getSearchUrl() {
        return "https://api.giphy.com/v1/stickers/search?q=cat&api_key=3o6ZsYH6U6Eri53TXy&offset=%d&limit=" + PAGE_SIZE + "&q=%s";
    }
}