0.1.0 • Published 1 year ago

nestjs-douyin v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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: '' })

使用文档

License

MIT