tiktok / tiktok-business-api-sdk

An SDK built to facilitate application development to integrate with TikTok Business API.
https://ads.tiktok.com/marketing_api/docs?id=1764231376750658&rid=542rk6sm9jl
MIT License
69 stars 26 forks source link

Java : Maven / Gradle dependency not working #42

Open hmigneron opened 3 weeks ago

hmigneron commented 3 weeks ago

The documentation states that maven users should add this dependency to their POM file :

 <dependency>
   <groupId>io.swagger</groupId>
   <artifactId>business_api_client</artifactId>
   <version>1.0.0</version>
   <scope>compile</scope>
 </dependency>

or that gradle users should add the following dependency :

compile "io.swagger:business_api_client:1.0.0"

However, this doesn't resolve / the file doesn't exist at this address : https://repo.maven.apache.org/maven2/io/swagger/business_api_client/1.0.0/business_api_client-1.0.0.pom

More generally, the package name this is documented as using is io.swagger, which is not owned by Tiktok (and therefore sounds like a potential trademark issue if swagger were to do anything about it ?)

So, which dependency should we add to maven or gradle project to work with this library ?