Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

VB.NET UWP/WinRT Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Bitfinex v2 REST
Bluzone
BrickLink
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(VB.NET UWP/WinRT) Twitter - Get Follower IDs

Demonstrates how to get a list of follower IDs for a Twitter user. If the number of followers is more than can be returned in a single response, this example will use cursors to page through the followers.

Note: Rate limits will prevent a program from paging through huge lists of followers. In general, a maximum of 16 GET requests (pages) can be retrieved in a short period of time.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

' ----------------------------------------------------------------------
' This initial setup, which involves setting the OAuth1 properties and connecting
' to api.twitter.com, is only required once at the beginning.  Once connected, the same
' object instance may be re-used, and if necessary, it will automatically reconnect
' as needed.

' Assume we've previously obtained an access token and saved it to a JSON file..
Dim json As New Chilkat.JsonObject
Dim success As Boolean = json.LoadFile("qa_data/tokens/twitter.json")

Dim rest As New Chilkat.Rest
Dim oauth1 As New Chilkat.OAuth1

oauth1.ConsumerKey = "TWITTER_CONSUMER_KEY"
oauth1.ConsumerSecret = "TWITTER_CONSUMER_SECRET"
oauth1.Token = json.StringOf("oauth_token")
oauth1.TokenSecret = json.StringOf("oauth_token_secret")
oauth1.SignatureMethod = "HMAC-SHA1"
oauth1.GenNonce(16)

rest.SetAuthOAuth1(oauth1,False)

Dim bAutoReconnect As Boolean = True
success = Await rest.ConnectAsync("api.twitter.com",443,True,bAutoReconnect)
If (success <> True) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' This ends the initial setup...
' ----------------------------------------------------------------------

' This Twitter user has about 77.5K followers..
rest.AddQueryParam("screen_name","MarcusMiller959")

Dim jsonResponse As New Chilkat.JsonObject
jsonResponse.EmitCompact = False

' Get the 1st page of results using a cursor of "-1".
Dim sbNextCursor As New Chilkat.StringBuilder
sbNextCursor.SetString("-1")

Dim pageNum As Integer = 1
Dim caseSensitive As Boolean = False
Dim bContinue As Boolean = True
' Get a maximum of 5 pages (of 5000 ids each).
While bContinue = True

    If (sbNextCursor.ContentsEqual("0",caseSensitive) = True) Then
        ' This will cause the loop to exit..
        bContinue = False
    Else
        ' Adds or replaces the query param.
        rest.AddQueryParam("cursor",sbNextCursor.GetAsString())

        ' Get the next page of follower IDs
        Dim resp As String = Await rest.FullRequestNoBodyAsync("GET","/1.1/followers/ids.json")
        If (rest.LastMethodSuccess <> True) Then
            Debug.WriteLine(rest.LastErrorText)
            Exit Sub
        End If


        jsonResponse.Load(resp)

        If (rest.ResponseStatusCode <> 200) Then
            Debug.WriteLine(jsonResponse.Emit())
            Exit Sub
        End If


        ' Show the number of IDs returned in this 
        Dim numIds As Integer = jsonResponse.SizeOfArray("ids")
        Debug.WriteLine("Page " & pageNum & ", Number of Ids: " & numIds)

        ' Show the 1st 10 ids in this page.
        Dim i As Integer = 0
        While i < numIds
            jsonResponse.I = i
            Debug.WriteLine("    " & i & ": " & jsonResponse.StringOf("ids[i]"))

            i = i + 1
            If (i > 10) Then
                ' Force the loop to exit.
                i = numIds
            End If

        End While

        pageNum = pageNum + 1
        If (pageNum > 5) Then
            bContinue = False
        Else
            sbNextCursor.SetString(jsonResponse.StringOf("next_cursor_str"))
        End If

    End If

End While

' A successful JSON response for the 1st page looks like this:

' 	{
' 	  "ids": [
' 	    3140496044,
' 	    793204773751324672,
' 	    789951187781050369,
' 	    763520773587922945,
' 	    ...
' 	    15031286,
' 	    2668251246,
' 	    3751659443
' 	  ],
' 	  "next_cursor": 1531680438812851153,
' 	  "next_cursor_str": "1531680438812851153",
' 	  "previous_cursor": 0,
' 	  "previous_cursor_str": "0"
' 	}

' The output of this program looks like this:

' 	Page 1, Number of Ids: 5000
' 	    0: 931953350
' 	    1: 786708055
' 	    2: 560845700
' 	    3: 3140496044
' 	    4: 793204773751324672
' 	    5: 789951187781050369
' 	    6: 763520773587922945
' 	    7: 793143274059988992
' 	    8: 793139683412762624
' 	    9: 1588222783
' 	    10: 703821370778451968
' 	Page 2, Number of Ids: 5000
' 	    0: 15031286
' 	    1: 2668251246
' 	    2: 3751659443
' 	    3: 3324584493
' 	    4: 2440214809
' 	    5: 1322335441
' 	    6: 4439178393
' 	    7: 4911573711
' 	    8: 720792880080560128
' 	    9: 720805087124267008
' 	    10: 172926330
' 	Page 3, Number of Ids: 5000
' 	    0: 93867176
' 	    1: 2992946183
' 	    2: 2825296077
' 	    3: 3784572861
' 	    4: 2150051321
' 	    5: 2460881603
' 	    6: 4128849341
' 	    7: 2234697931
' 	    8: 2379418164
' 	    9: 3425171542
' 	    10: 325759186
' 	Page 4, Number of Ids: 5000
' 	    0: 22793412
' 	    1: 3347750489
' 	    2: 316923043
' 	    3: 2481719196
' 	    4: 3363591905
' 	    5: 3238116492
' 	    6: 58467130
' 	    7: 3015182362
' 	    8: 2985342719
' 	    9: 3095965720
' 	    10: 17505957
' 	Page 5, Number of Ids: 5000
' 	    0: 2541434684
' 	    1: 140022957
' 	    2: 134845054
' 	    3: 772810508
' 	    4: 16979294
' 	    5: 2320540225
' 	    6: 105439442
' 	    7: 2796744529
' 	    8: 251128801
' 	    9: 350229758
' 	    10: 2683994716
' 

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.