post_req_one = HTTParty.post(ENV['SERVER_URL'] + "/trends",
body: {
keyword_one: @wine.winemaker,
keyword_two: @wine.wine_name,
keyword_three: "natural wine"
}.to_json,
headers: { 'Content-Type' => 'application/json' }
)
@wine_trends_data_one = []
data_points_one = (120..((post_req_one["default"]["timelineData"].length) - 1)).to_a