Scraping a news story

Figured this out using Scraping Bee (ScrapeNinja - and its documentation - was not working for me). The essential piece of knowledge I uncovered is that many article authors use the HTML tag or to contain the “body text” of the article. My JSON extraction was simple {“title”:“title”,“body”:“body”,“article”,“article”}. After I get this object I then investigated bot and to select the larger item…and then cut this item down to 40,000 characters (because I wanted to store it in a single cell in a google sheet). Hope this helps someone someday!