Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Places: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 408 column 36 path $.result.secondary_opening_hours #906

Open
MattWilliams89 opened this issue Apr 12, 2023 · 4 comments
Assignees
Labels
triage me I really want to be triaged. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.

Comments

@MattWilliams89
Copy link

Environment details

OS type and version:
Gradle JDK: jbr-17, 17.0.6
Kotlin JVM: 1.8.0

Library version and other environment information:
com.google.maps:google-maps-services:2.2.0

Running on Ktor server v 2.2.3

Steps to reproduce

  1. Make a call to PlacesApi.placeDetails with placeId ChIJTSQM7Smze0gR627zU4Cvkn4

Code example

return try {
            val response = PlacesApi.placeDetails(GoogleApiClient.context, id).await()
        } catch (e: Throwable) {
            PlacesDetailClientResponse.Error
        }

Stack trace

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 408 column 36 path $.result.secondary_opening_hours

Following these steps will guarantee the quickest resolution possible.

Thanks!

@MattWilliams89 MattWilliams89 added triage me I really want to be triaged. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns. labels Apr 12, 2023
@wangela
Copy link
Member

wangela commented Apr 12, 2023

If you would like to upvote the priority of this issue, please comment below or react with 👍 so we can see what is popular when we triage.

@MattWilliams89 Thank you for opening this issue. 🙏
Please check out these other resources that might help you get to a resolution in the meantime:

This is an automated message, feel free to ignore.

@deansg
Copy link

deansg commented Apr 13, 2023

I have received the same issue when using Java 17, and sending a request for place with id ChIJhbDp64aLGGAR5ywd2IRem7Q

According to the official API documentation here, the secondary_opening_hours field is an Array, which seems to be the cause of the problem

@tomag
Copy link

tomag commented Apr 30, 2023

I bypassed this bug by excluding the secondary_opening_hours field -

        PlaceDetailsRequest request = PlacesApi.placeDetails(geoApiContext, placeId);
        
        request.fields(Arrays.stream(PlaceDetailsRequest.FieldMask.values())
                .filter(x -> x != PlaceDetailsRequest.FieldMask.SECONDARY_OPENING_HOURS)
                .toArray(PlaceDetailsRequest.FieldMask[]::new));

        PlaceDetails response = request.await();

@asloup
Copy link

asloup commented Aug 5, 2023

Here's the same thing in Kotlin if anybody needs it:

        val request = PlacesApi.placeDetails(geoApiContext, placeId)
        val fields = HashSet<PlaceDetailsRequest.FieldMask>()
        fields.addAll(PlaceDetailsRequest.FieldMask.values())
        fields.remove(PlaceDetailsRequest.FieldMask.SECONDARY_OPENING_HOURS)
        request.fields(*fields.toTypedArray())
        val placeDetails: PlaceDetails? = try {
            request.await()
        } catch (e: Exception) {
            println("refreshPlaces - Google Places SDK exception - PlacesApi.placeDetails() - placeId = ${placeId}, error = ${e.message}")
        }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
triage me I really want to be triaged. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Projects
None yet
Development

No branches or pull requests

6 participants