|
@@ -13,9 +13,28 @@ import java.io.UnsupportedEncodingException;
|
|
*/
|
|
*/
|
|
public interface IBindAccountAuthService extends IService<BindAccountAuth> {
|
|
public interface IBindAccountAuthService extends IService<BindAccountAuth> {
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 获取快手url
|
|
|
|
+ *
|
|
|
|
+ * @param state
|
|
|
|
+ * @return
|
|
|
|
+ * @throws UnsupportedEncodingException
|
|
|
|
+ */
|
|
String getKuaishouCodeUrl(String state) throws UnsupportedEncodingException;
|
|
String getKuaishouCodeUrl(String state) throws UnsupportedEncodingException;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 获取头条url
|
|
|
|
+ * @param state
|
|
|
|
+ * @return
|
|
|
|
+ * @throws UnsupportedEncodingException
|
|
|
|
+ */
|
|
String getByteDanceCodeUrl(String state) throws UnsupportedEncodingException;
|
|
String getByteDanceCodeUrl(String state) throws UnsupportedEncodingException;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 绑定账号
|
|
|
|
+ * @param accountId
|
|
|
|
+ * @param type
|
|
|
|
+ * @param state
|
|
|
|
+ */
|
|
void addBindAccount(Long accountId, String type, String state);
|
|
void addBindAccount(Long accountId, String type, String state);
|
|
}
|
|
}
|