We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Sep 23, 2020 11:48 AM
I'm creating a custom connector from Microsoft flow to HubSpot, but when I get redirected to the Authentication URL the page shows up blank. I think that flow is doing something to the link when redirecting me to that page.
This is the URL I put into the Microsoft Flow "Authorizaiton URL":
This is the URL that I am being redirected to in order to "sign in" to my hubspot account (this is the page that shows up blank):
Sep 24, 2020 2:52 PM
hey @lballard702 ,
Did you figure this out?
![]() | Make sure to subscribe to our YouTube channel where you can find the HubSpot Community Developer Show |
Sep 25, 2020 10:34 AM - edited Sep 25, 2020 10:35 AM
Yup! @dennisedson
Now I'm just having an issue with the request...
Invalid input JSON on line 1, column 15: Cannot construct instance of `java.util.LinkedHashMap` (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value ('[
{
"property": "email",
"value": "slimshady@example.com"
},
{
"property": "firstname",
"value": "Slim"
},
{
"property": "lastname",
"value": "Shady"
},
{
"property": "website",
"value": "http://example.com"
},
{
"property": "company",
"value": "Eminem"
},
{
"property": "phone",
"value": "000-123-4567"
}
]')
Sep 25, 2020 5:43 PM
hey @lballard702 ,
If this is your complete json body, you are missing the properties array which will wrap all of the property objects
You can see an example here
Glad you almost have it!
![]() | Make sure to subscribe to our YouTube channel where you can find the HubSpot Community Developer Show |