Extra text received after completion of reading JSON and Unexpected Token content in my json

I am having some problems with my json channel created using JSON.Net. When I try to make it out, he gives me

Extra text received after reading JSON:,. Path '', line 17, position 4.

I tried to check it using http://json.parser.online.fr/ and it says: "Syntax: error: unexpected token".

Any ideas why?

I inserted my json below:

{ "ReviewId": 10250, "DateOfVisit": "Wed, 04 Jan 2012 00:00:00 +01:00", "SmartDateOfVisit": "Wednesday, January 04, 2012 12:00 AM", "First": null, "IsFeatured": null, "Rating": 5, "Text": "nice food", "ReviewTitle": "superb experience", "DisplayName": "mr. X", "ProfilePagePath": "http://facebook.com", "ProfileImage": "http://facebook.com/images/anonymous.png", "UserReviewsWritten": 119, "PlaceName": "Some place", "PlaceUrl": "http://www.somesite.com/someplace" }, { "ReviewId": 10250, "DateOfVisit": "Wed, 04 Jan 2012 00:00:00 +01:00", "SmartDateOfVisit": "Wednesday, January 04, 2012 12:00 AM", "First": null, "IsFeatured": null, "Rating": 5, "Text": "nice food", "ReviewTitle": "superb experience", "DisplayName": "mr. X", "ProfilePagePath": "http://facebook.com", "ProfileImage": "http://facebook.com/images/anonymous.png", "UserReviewsWritten": 119, "PlaceName": "Some place", "PlaceUrl": "http://www.somesite.com/someplace" } 
+4
source share
1 answer

{ ... } valid JSON. After that , is an unexpected token. After that, { ... } is the final garbage.

+7
source

All Articles