DRAG DROP
You develop a provider-hosted SharePoint app that retrieves and displays news headlines from an external site named News. The site contains lists of news headlines from many news sources.
You need to create a Representational State Transfer (REST) endpoint URL in the app to retrieve hourly headlines from the site for a specific news source.
You have the following code:

Which code segments should you include in Target 1, Target 2, Target 3 and Target 4 to complete the code? (To answer, drag the appropriate term to the correct targets in the answer area. Each term may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
Select and Place:

Correct Answer:

Explanation/Reference:
* news/_api/web/lists
Example:
The following example shows how to retrieve a specific list if you know its title.
url: http://site url/_api/web/lists/GetByTitle('Test')
method: GET
Headers:
Authorization: "Bearer " + accessToken
accept: "application/json;odata=verbose" or "application/atom+xml"