使用这个文档accounts.locations.reviews.get我试图阅读JAVA 18
中的具体评论,问题是我没有找到这个旧API的Maven依赖项,它还没有被弃用。
在我以前
MyBusiness.Accounts.Locations.Reviews.Get myReview= mybusiness.accounts().locations().reviews().get(reviewName);
Review response=myReview.execute();
字符串
现在连我都不能初始化API了!
我尝试在pom.xml中添加:
x1c 0d1x的数据
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-mybusiness</artifactId>
<version>v4-rev20211101-1.32.1</version>
但它不接受,并有一个错误:
缺少构件com.google.apis:google-api-services-mybusiness:jar:v4-rev 20211101 -1.32.1
我能做什么?
1条答案
按热度按时间1dkrff031#
我发现了另一种方法来获得评论,使用OkHttp客户端设置对Google My Business API的请求,但我仍然有兴趣知道什么是Maven依赖。下面是我所做的:
字符串