package com.github.jreddit.oauth.app; public class RedditScriptApp extends RedditApp { /** * Reddit Script Application.
*
* All information given in this constructor must * match the information stated on reddit. * * @param clientID Client identifier (e.g. "p_jcolKysdMFud") * @param clientSecret Client secret (e.g. "gko_LXEJKF89djs98fhFJkj9s") * @param redirectURI Redirect URI (e.g. "http://www.example.com/auth") */ public RedditScriptApp(String clientID, String clientSecret, String redirectURI) { super(clientID, clientSecret, redirectURI); } }