weiboclient4j.params.PicId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weiboclient4j Show documentation
Show all versions of weiboclient4j Show documentation
Java library for Sina Weibo
package weiboclient4j.params;
import weiboclient4j.utils.StringUtils;
public class PicId extends StringParam {
public PicId(String... picIdList) {
super(StringUtils.join(picIdList, ","));
}
protected String paramKey() {
return "pic_id";
}
}