• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

  • Important: Any reported problems and issues with your integration will be reported to you and we will encourage the app developers help to resolve those integration issues.

How we built Tumblr (Oauth1.0 based Integration)

App Name - Tumblr
API Docs - https://www.tumblr.com/docs/en/api/v2


Authentication Method - Oauth1.0

You can follow these steps to build the app integration with a similar Oauth1.0-type.

1. App Details and Auth Configuration.

1663931214134.png



👉 We followed the Tumblr API docs for selecting the Auth type as Oauth1.0.


1663931233064.png




Redirect URL - Add this Redirect URL ( https://connect.pabbly.com/redirect_url ) where you have registered your developer app.
Authorize URL - Specify your app Authorize URL to request user authorization e.g. https://www.tumblr.com/oauth/authorize
Request Token URL - Specify your app Request Token URL to obtain an OAuth Request Token to request user authorization e.g. https://www.tumblr.com/oauth/request_token.
Access Token URL - Specify your app Access Token URL to exchange the OAuth Request Token for an OAuth Access Token e.g. https://www.tumblr.com/oauth/access_token

Consumer Key - Specify your app Consumer Key e.g. wed4MIeLqzAN
Consumer Secret - Specify your app Consumer Secret e.g. tXSycAAeOVwV

Encode the parameters in the Authorization header - Not selected (Required if your app auth requires encoded parameters in the Authorization header.)
Signature Method - HMAC-SHA1
Set App Auth Parameters - Specify if app auth requires to pass the query or URL parameters e.g. subdomain.
Received App Auth Parameters - Specify if you need to catch the parameters from access token JSON to use further in API requests e.g. oauth_access_token and oauth_token_secret.


2. Configure Triggers

Trigger name - New Liked Post
Type - Polling based.


1663998974309.png


  • In the above screenshot, we have used the Get method for trigger configuration by polling method.
  • After that, set the Request Body JSON.
  • Save and Send the test request and fetch the response.

Simplify Array Response allows you to choose an array key from the above step and simplify array response in the key-value pair.

1663999104847.png


The New Record Order Setting section as shown below allow you to tell Pabbly Connect about how it can recognize the fetched record is new.
Unique Record ID: Choose a unique record ID from the received response of the above step that uniquely identifies the new record.
Sorting Order: Since the fetched records may be single or a bunch so, it is important to identify the record as new it may be based on any specific field of the new data like date value. Based on its value, the system compares the old data with this one and process it for triggering if it finds any difference.
In case, there is no such field value present in the response, you can opt for By Position and locate the new record's presence either at the top or at the bottom of the bunch of JSON responses.

Trigger Frontend View:

1664000419721.png



3. Configure Action

Action - Create Text Post

Action Event API Configuration with JSON Request Body Type -

  • HTTP request method - POST
  • API Endpoint URL - https://api.tumblr.com/v2/blog/{{blog_identifier}}/post
  • Request Body Type - Specify a request body type to request this action event. By default, it is JSON.
  • Wrap in Array - Specify if your request raw JSON needs to be wrapped in an array or not.
  • Set Body/Query Parameters - Set parameters if this action event requires to pass the query/URL parameters or map in request raw JSON e.g. native_inline_images
  • Request Body (Raw JSON) - Select this if this action event requires to pass the raw JSON data. If used in endpoints, all variables defined under Set parameters option should have the required option opted. (Some API accepts blank values for JSON keys).


1664002357042.png



Now, select the available inbuilt action events from the dropdown field as shown below:

👉blog_identifier parameter is set as Dynamic dropdown field.

1664003772713.png


👉 native_inline_images parameter is set as a Static dropdown field i.e. Yes/No.


1664005103764.png


👉Rest all the Parameters are set as the basic input field.

1664006142895.png


Action Frontend View:

1664006320570.png


👉 For more details follow this guide for creating new actions and triggers in your apps
- https://forum.pabbly.com/forums/pabbly-connect-app-integration-guide/

👉 Refer to the below video for creating your app with a similar auth type :

 

Attachments

  • 1663997813579.png
    1663997813579.png
    204 KB · Views: 127
  • 1664003612685.png
    1664003612685.png
    156.2 KB · Views: 133
Last edited by a moderator:
Top