GeoApiContext - Mobility - Failed to set the trip ID (Mobility Solution) via .experienceIdHeaderValue()
Environment details
Library version: 2.2.0
Steps to reproduce
We are going to manage trips for our mobility project and referring this documentation to report the trip IDs (aka Experience IDs) but failed. It seems like there is no such method experienceIdHeaderValue. I created a GMP support ticket before but they asked me to report this issue here. Could you help on this?
Meanwhile, we'd like to know if we are allowed to set GMP request header for tripID by our own via the following part,
Please find our screencaps for the experienceIdHeaderValue part in the attachment.
Translation of the image Java: cannot find symbol symbol: method experienceIdHeaderValue(java.lang.String) location: class com.google.maps.GeoApiContext.Builder
![]()
![]()
![]()
Code example
GeoApiContext context = new GeoApiContext.Builder()
.apiKey("AIza...")
.experienceIdHeaderValue("MCN-99a692...")
.build();
GeocodingResult[] results = GeocodingApi.geocode(context,
"1600 Amphitheatre Parkway Mountain View, CA 94043").await();
Gson gson = new GsonBuilder().setPrettyPrinting().create();
System.out.println(gson.toJson(results[0].addressComponents));
Thanks in advance.
Best Regards, Sisi
hi there, any luck for this issue?
Since v2.0.0, the new method of setting Experience IDs is to set them on the GeocodingApiRequest instead of GeoApiContext, as demonstrated in the GeocodingApiTest.java (see Javadoc).
We've made a request to update the documentation code snippet you linked to.