我需要将位置数据读/写到Google Business API。不幸的是,似乎Google只为Java提供了正确的API包装器: https://developers.google.com/my-business/content/location-data
例如,
public static void updateLocation(String phone, String name) throws Exception {
Location location = new Location()
.setPrimaryPhone(phone);
Mybusiness.Accounts.Locations.Patch updateLocation =
mybusiness.accounts().locations().patch(name, location);
updateLocation.setFieldMask("primary_phone");
updateLocation.setLanguageCode("en-AU");
Location updatedLocation = updateLocation.execute();
System.out.printf("Updated Location:\n%s", updatedLocation);
}
我正在为C#寻找类似的东西。预先感谢。
答案 0 :(得分:1)
我还没有真正使用它,我们最终使用了另一个系统,但是有一个纯REST的参考,因此您可以使用任何语言和库https://developers.google.com/my-business/reference/rest/