Tag: google api java client

SparkJava不能与一些Google Youtube API一起使用

我们决定使用SparkJava,Kotlin和Mustache作为商业网络产品。 我们的产品需要与Google(YouTube)API集成。 该项目的所有终端正常工作。 (后台,CRUD操作等),我们开始实施YouTube的集成,我不得不将谷歌图书馆添加到我的项目开始。 (不要添加任何额外的代码,只需添加库google-oauth-client-jetty。) 你可以在下面find我的Gradle库: dependencies { // Below library is a part of the requirements or YouTube Integration compile group: ‘com.google.oauth-client’, name: ‘google-oauth-client-jetty’, version: ‘1.11.0-beta’ // And these are the others compile fileTree(include: [‘*.jar’], dir: ‘lib’) compile “org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version” compile group: ‘com.sparkjava’, name: ‘spark-core’, version: ‘2.7.0’ compile ‘com.google.code.gson:gson:2.8.1’ compile group: ‘commons-codec’, name: ‘commons-codec’, version: […]