nestjs-douyin
v0.1.0
Published
基于 Nestjs 封装的抖音小程序 API
Downloads
17
Maintainers
Readme
NESTJS DOUYIN
基于 Nestjs 封装的抖音小程序 API,持续完善中。
使用
导入模块:
import { DouyinAppModule } from 'nestjs-douyin'
@Module({
imports: [
DouyinAppModule.forRoot({ appid: '', secret: '' })
]
})
使用:
import { DouyinAppService } from 'nestjs-douyin'
@Injectable()
export class UserService {
constructor(private readonly douyinAppService: DouyinAppService) {}
}
当成工具类使用:
import { DouyinAppService } from 'nestjs-douyin'
const douyinApp = new DouyinAppService({ appid: '', secret: '' })