All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wiztools.oembed.package.html Maven / Gradle / Ivy

The newest version!


    
        
        
    
    
        WizTools.org is a Java implementation of the oEmbed specification.
        
        Sample usage:
        
import org.wiztools.oembed.*;
import java.net.URL;

...

OEmbedUrlBuilder builder = new OEmbedUrlBuilder("http://www.youtube.com/oembed");
builder.addUrl("http://www.youtube.com/watch?v=DcexJQM-8W0")
       .addFormatXml();

URL url = builder.build();

// Now execute:
OEmbedExecutor exec = new OEmbedHttpExecutor();
OEmbedResponse response = exec.get(url);

// Print the result:
System.out.println(response.getHtml());
        




© 2015 - 2025 Weber Informatics LLC | Privacy Policy