+ Reply to Thread
Results 1 to 5 of 5

Macro to get data from url.

Hybrid View

  1. #1
    Registered User
    Join Date
    09-25-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    88

    Macro to get data from url.

    Hi,

    I am trying to get data from url below is the vba code which i am using to get data but unable to get complete data.

    My output should {"response": {"objects": [["natural_light", 612, 881, 1124, 1118]]}, "error": "false"} in range ("B2").

    below is my vba code.

    sub test()
    Dim xhr As MSXML2.XMLHTTP60
    Dim doc As MSHTML.HTMLDocument
    Dim results As MSHTML.HTMLDivElement
    Dim elt As MSHTML.HTMLTableCell
    Dim imgs As MSHTML.IHTMLElementCollection
    Dim img As MSHTML.HTMLImg
    Set xhr = New MSXML2.XMLHTTP60
    With xhr
    .Open "GET", "https://api.restb.ai/segmentation client_key=c529e4cb36fd71a0038e5790fd69a42eacaf378fa0789bba78b9782e073b88ed&model_id=re_features&image_url=https://www.mulderteam.com/wp-content/blogs.dir/234/files/2013/04/110922317.jpg", False
    .send
    If .readyState = 4 And .Status = 200 Then
    Set doc = New MSHTML.HTMLDocument
    doc.body.innerHTML = .responseText
    End If
    End With
    Set HTML = New MSHTML.HTMLDocument
    Sheets("List").Range("B2") = HTML.DocumentElement.innerHTML
    End Sub

  2. #2
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,289

    Re: Macro to get data from url.

    Hi UPA,

    In your .Open line of code, it ends with a ".jpg" which implies you are trying to get data from a picture file. Can you supply the correct URL for the site you are trying to scrape data from? If it is a picture, Excel won't be able to do it.
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  3. #3
    Registered User
    Join Date
    09-25-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    88

    Re: Macro to get data from url.

    Hi MarvinP,

    Thanks for the reply!

    Yes,I am trying to get data from picture file.

    Here is the correct url

    https://api.restb.ai/segmentation?cl.../110922317.jpg

    Regards
    upa
    Last edited by UPA; 09-06-2017 at 12:48 AM. Reason: url edit

  4. #4
    Forum Contributor
    Join Date
    11-19-2015
    Location
    India
    MS-Off Ver
    excel 2013
    Posts
    124

    Re: Macro to get data from url.

    May be

    Sub upa()
    Dim URL2 As String: URL2 = "https://api.restb.ai/segmentation?client_key=c529e4cb36fd71a0038e5790fd69a42eacaf378fa0789bba78b9782e073b88ed&model_id=re_features&image_url=https://www.mulderteam.com/wp-content/blogs.dir/234/files/2013/04/110922317.jpg"
    Dim Http2 As New WinHttpRequest
    Http2.Open "GET", URL2, False
    Http2.send
    Dim Resp As String: Resp = Http2.responseText
    Dim Lines2 As Variant: Lines2 = Split(Resp, vbNewLine)
    Debug.Print Lines2(0)
    For k = LBound(Lines2) To UBound(Lines2)
    ActiveSheet.Cells(1 + k, 1).Value = Lines2(k)
    Next k
    End Sub

  5. #5
    Registered User
    Join Date
    09-25-2015
    Location
    India
    MS-Off Ver
    2013
    Posts
    88

    Re: Macro to get data from url.

    Hi xlhelp7,
    Thanks for the reply!
    That is exactly what I am looking for.
    Perfect!!!! Thanks so much for your assistance.

    Regrads,

    upa

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Macro fix space between data, Macro that takes cell information by name or data.
    By Maickol in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-28-2015, 03:18 PM
  2. Macro template good saved but running macro with imported data problem
    By brazilexcel in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-18-2015, 10:42 PM
  3. automatic macro with linking data in two workbooks, multiple row data to one row data
    By garfield8626 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-02-2013, 01:47 PM
  4. [SOLVED] excel 2007 chart macro graphs data only from sheet on which macro was recorded
    By JW1028 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-19-2013, 06:33 PM
  5. Macro to download monthly stock data and to refresh that data with the macro
    By Frankdude in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 05-23-2011, 08:38 PM
  6. Creating a macro to auto-update external data and time macro was excecuted
    By UNWATCHABLE in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-28-2010, 05:21 AM
  7. Optimizing Excel macro to find/replace with the list of data contained in the macro
    By Iceyburnz in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-17-2008, 08:41 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1