| 
									
										
										
										
											2021-09-15 01:33:52 +02:00
										 |  |  | const client_token = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85" | 
					
						
							| 
									
										
										
										
											2021-07-28 02:51:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-15 01:33:52 +02:00
										 |  |  | const image_id = '196804715753265'; | 
					
						
							|  |  |  | const api_url = 'https://graph.mapillary.com/' + image_id + '?fields=thumb_1024_url&&access_token=' + client_token; | 
					
						
							|  |  |  | fetch(api_url, | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         headers: {'Authorization': 'OAuth ' + client_token} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | ).then(response => { | 
					
						
							|  |  |  |     return response.json() | 
					
						
							|  |  |  | }).then( | 
					
						
							|  |  |  |     json => { | 
					
						
							|  |  |  |         const thumbnail_url = json["thumb_1024"] | 
					
						
							|  |  |  |         console.log(thumbnail_url) | 
					
						
							| 
									
										
										
										
											2021-07-28 02:51:07 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-15 01:33:52 +02:00
										 |  |  | ) |