skip to Main Content

Json – how to pull movie id(tmdb api) , @PathVarible

I started my first spring boot project. That's why it's not enough. Already looked for stack overflows and googling. I'd appreciate your help. **tmdb api Query For Details ** 'https://api.themoviedb.org/3/movie/343611?api_key=87bad1aa...~' movie_id : 343611 Controller import com.example.joyit.service.MovieSearchService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j;…

VIEW QUESTION

Python does not tell JSON from string

I have a json file like this: "["SOMEURL","SOMEURL","SOMEURL","SOMEURL"]" and I need to put these values to the array but such code as fileObject = open("doc_1.json", "r") jsonContent = fileObject.read() aList = json.loads(jsonContent) print(aList) opens it as a simple string, so…

VIEW QUESTION
Back To Top
Search