2 changed files with 31 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||||
|
package org.dromara.im.controller; |
||||
|
|
||||
|
import cn.dev33.satoken.annotation.SaIgnore; |
||||
|
import lombok.RequiredArgsConstructor; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.validation.annotation.Validated; |
||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
import java.util.Map; |
||||
|
|
||||
|
/** |
||||
|
* tiktok接口 |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-07 |
||||
|
*/ |
||||
|
@Slf4j |
||||
|
@Validated |
||||
|
@RequiredArgsConstructor |
||||
|
@RestController |
||||
|
@RequestMapping("/tiktok") |
||||
|
public class TikTokOauth { |
||||
|
@SaIgnore |
||||
|
@GetMapping("/callback") |
||||
|
public void TikTokCallbackVO() { |
||||
|
|
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue