
com.gihub.gkutiel.GraphApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fbi Show documentation
Show all versions of fbi Show documentation
Java API for Facebook apps
package com.gihub.gkutiel;
public abstract class GraphApi extends Url {
public static class Delete extends GraphApi {
public Delete(final String path) {
super("DELETE", path);
}
}
public static class Get extends GraphApi {
public Get(final String path) {
super("GET", path);
}
}
public static class Post extends GraphApi {
public Post(final String path) {
super("POST", path);
}
}
final String method;
private GraphApi(final String method, final String path) {
super("https://graph.facebook.com/" + path);
this.method = method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy