У меня есть короткий URL-адрес, сделанный http://goo.gl/ Мне нужно получить исходный url. Есть ли какие-либо апи, чтобы сделать это в ANDROID.URL-адрес Google сокращенно расшифровывается андроид
То, что я пытался сделать для короче -
компиляции 'com.andreabaccega: googlshortenerlib: 1.0.0'
GoogleShortenerPerformer shortener = new GoogleShortenerPerformer(new OkHttpClient());
String longUrl = "http://www.andreabaccega.com/";
GooglShortenerResult result = shortener.shortenUrl(
new GooglShortenerRequestBuilder()
.buildRequest(longUrl)
);
if (Status.SUCCESS.equals(result.getStatus())) {
// all ok result.getShortenedUrl() contains the shortened url!
} else if (Status.IO_EXCEPTION.equals(result.getStatus())) {
// connectivity error. result.getException() returns the thrown exception while performing
// the request to google servers!
} else {
// Status.RESPONSE_ERROR
// this happens if google replies with an unexpected response or if there are some other issues processing
// the result.
// result.getException() contains a GooglShortenerException containing a message that can help resolve the issue!
}
За то, что я получил отрицательный человек голосов? – Anirban
Если вы не можете помочь, пожалуйста, не давайте отрицательный голос. Нет соответствующего решения, которое я искал почти 2 часа, поэтому я прошу. – Anirban