正在查看: Aisle v12.32 应用的 f.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Aisle v12.32 应用的 f.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package O6;
import com.google.android.gms.common.api.Status;
import com.google.android.gms.common.api.internal.C0375u;
import com.google.android.gms.common.internal.AbstractC0407s;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public final class f implements Runnable {
private static final T6.a c = new T6.a("RevokeAccessOperation", new String[0]);
private final String a;
private final C0375u b = new C0375u(null);
public f(String str) {
this.a = AbstractC0407s.f(str);
}
public static com.google.android.gms.common.api.h a(String str) {
if (str == null) {
return com.google.android.gms.common.api.i.a(new Status(4), null);
}
f fVar = new f(str);
new Thread(fVar).start();
return fVar.b;
}
@Override
public final void run() {
Status status = Status.o;
try {
HttpURLConnection httpURLConnection = (HttpURLConnection) new URL("https://accounts.google.com/o/oauth2/revoke?token=" + this.a).openConnection();
httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
int responseCode = httpURLConnection.getResponseCode();
if (responseCode == 200) {
status = Status.f;
} else {
c.c("Unable to revoke access!", new Object[0]);
}
c.a("Response Code: " + responseCode, new Object[0]);
} catch (IOException e) {
c.c("IOException when revoking access: ".concat(String.valueOf(e.toString())), new Object[0]);
} catch (Exception e2) {
c.c("Exception when revoking access: ".concat(String.valueOf(e2.toString())), new Object[0]);
}
this.b.setResult(status);
}
}