Free Cisco 200-901 Actual Exam Questions - Question 14 Discussion
Fill in the blanks to complete the cURL command that invokes a RESTful API to retrieve a resource in JSON format using OAuth. 
B makes sense since it uses GET and explicitly requests JSON with Accept header.
I’m thinking option B again because the Accept header ensures the response is JSON, which matches the question’s requirement. The other options miss that detail or use the wrong method.
Option B looks right because GET is for retrieving and it includes all needed headers.
Option B stands out because it uses GET, which is standard for fetching data, and includes the right headers for OAuth and JSON. The other options either use POST or miss one of these critical headers.
I agree that the Authorization header with the Bearer token is essential here. Beyond that, option B is the only one that includes both the GET method and the Accept header for JSON, which fits the requirement of retrieving a resource in JSON format. Options without the Accept header can be ruled out since the question specifically mentions JSON. Also, POST doesn't make sense for a retrieval operation, so any choice using POST should be eliminated right away.
I think the key part is using -H 'Authorization: Bearer <token>' to pass the OAuth token, so any option missing that header can be dropped. Then, -H 'Accept: application/json' makes sense for JSON response.
This image is too blurry to read the question properly, can someone clarify?