We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae77c0c commit f8d3cf9Copy full SHA for f8d3cf9
1 file changed
lib/twitter-ads/account.rb
@@ -256,9 +256,8 @@ def tailored_audiences(id = nil, opts = {})
256
# @return [Array] An Array of Tweet objects.
257
#
258
# @since 0.2.3
259
- def scoped_timeline(ids, opts = {})
260
- ids = ids.join(',') if ids.is_a?(Array)
261
- params = { user_ids: ids }.merge!(opts)
+ def scoped_timeline(id, opts = {})
+ params = { user_id: id }.merge!(opts)
262
resource = SCOPED_TIMELINE % { id: @id }
263
request = Request.new(client, :get, resource, params: params)
264
response = request.perform
0 commit comments