Jump to content

Colombia Humana

Friends
  • Posts

    146
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Colombia Humana

  1. When I ran it manually, it still didn't work. The logs are empty unfortunately.

    In the table you mentioned, I did find it... member_registration_complete and the details are the account I just tried to create. However, the status is "pending"...
    In fact, all of them are pending... So they're kind of stuck (?)

  2. On 6/14/2023 at 6:58 AM, Daniel F said:

    In 4.7.11 which will be released soon™️    was just released

    @Daniel F I'm afraid the webhook is not being triggered at all 😅 ... it just won't be fired... I've tried with three different platforms (so three distinct webhook listeners), and even Zapier. The webhook is never fired.

  3. On 5/31/2023 at 8:36 AM, Daniel F said:

    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.

     

    I wonder when do you think this release would be made?

  4. Hello there,

    I already contacted support over this but they told me I should post it here. Creating a webhook with the following triggers: member_create and member_registration_complete will return incomplete data. Happens with both json or x-www-form:

    {
        "slug": "23-webhook-listener",
        "token": "dVA0Oa1",
        "{\"id\":null,\"name\":\"Invitado_danfelbm12345\",\"title\":null,\"timeZone\":\"UTC\",\"formattedName\":\"Invitado_danfelbm12345\",\"primaryGroup\":{\"id\":9,\"name\":\"Miembros\",\"formattedName\":\"Miembros\"},\"secondaryGroups\":": [
            ""
        ]
    }

    another attempt:

    {
        "slug": "23-webhook-listener",
        "token": "dVA0Oa1",
        "{\"id\":189269,\"name\":\"danfelbm12345\",\"title\":null,\"timeZone\":\"UTC\",\"formattedName\":\"danfelbm12345\",\"primaryGroup\":{\"id\":9,\"name\":\"Miembros\",\"formattedName\":\"Miembros\"},\"secondaryGroups\":": [
            ""
        ]
    }

    another attempt:

    {
        "slug": "23-webhook-listener",
        "token": "dVA0Oa1",
        "id": "",
        "name": "Invitado danfelbm1235",
        "title": "",
        "timeZone": "UTC",
        "formattedName": "Invitado danfelbm1235",
        "primaryGroup": {
            "id": "9",
            "name": "Miembros",
            "formattedName": "Miembros"
        },
        "secondaryGroups": [],
        "email": "danfelbm1235@gmail.com",
        "joined": "2023-05-31T03:34:24Z",
        "registrationIpAddress": "2800:484:e97e:3826:d091:9e2:699d:7127",
        "warningPoints": "0",
        "reputationPoints": "0",
        "photoUrl": "\/\/content.invisioncic.com\/u325521\/set_resources_4\/84c1e40ea0e759e3f1505eb1788ddf3c_default_photo.png",
        "photoUrlIsDefault": "",
        "coverPhotoUrl": "",
        "profileUrl": "",
        "validating": "",
        "posts": "0",
        "lastActivity": "",
        "lastVisit": "2023-05-31T03:34:24Z",
        "lastPost": "",
        "birthday": "",
        "profileViews": "",
        "customFields": [],
        "rank": {
            "id": "3",
            "name": "Newbie",
            "icon": "\/\/content.invisioncic.com\/u325521\/monthly_2021_07\/1_Newbie.svg",
            "points": "0"
        },
        "achievements_points": "",
        "allowAdminEmails": "",
        "completed": "1"
    }

    All custom fields are missing, actually ton of information is missing. In fact, if you see the "name" key/value, it says "Invitado" which means "Guest" ... And that "prefix" should not exist.

    The triggers are faulty.

    I'm a Cloud customer, so there isn't much I can do beyond reporting this...

  5. I opened a ticket as well @Stuart Silvester please help us. Today we are holding a very important event and people login via oauth, and it's broken unfortunately:
     

    Quote

    Response :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <TITLE>ERROR: The request could not be satisfied</TITLE> </HEAD><BODY> <H1>403 ERROR</H1> <H2>The request could not be satisfied.</H2> <HR noshade size="1px"> Request blocked. We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner. <BR clear="all"> If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation. <BR clear="all"> <HR noshade size="1px"> <PRE> Generated by cloudfront (CloudFront) Request ID: ieQxYHHzYovtf4b-yZIToFZLS3bbAtax0J7woEgTn012cY18LYKY1g== </PRE> <ADDRESS> </ADDRESS> </BODY></HTML>

    Invalid response received.

    People cannot login to participate and are really mad at us...

  6. On 1/18/2023 at 5:53 PM, Gary said:

    Hi @DanielFb,

    I can see your email in our system, and I apologise in advance for the delay in our reply to your questions.

    Our sales department are quite busy at present, and it generally takes longer to go through than general support. We endeavour to get back to our clients within reasonable timeframes, and I can promise you have not been forgotten or ignored. I assure you someone will be in touch with you as soon as possible.

    Hi Gary,

    I need help 🙈 I sent an email 4 days ago, and another one today; but I may need to migrate asap. 🙈

  7. Hi there,

    I'm pretty sure the request is well made: follow app is "core", follow area is "clubs", and the club ID is correct. However I get "Invalid Content":

    404
    {
        "errorCode": "2C292\/J",
        "errorMessage": "INVALID_CONTENT"
    }

    This is my request:

    import requests
    
    url = "https://community.com/api/core/members/123/follows"
    
    payload = "followApp=core&followArea=club&followId=123"
    headers = {
        'Content-Type': 'application/x-www-form-urlencoded'
    }
    
    response = requests.post(url, data=payload, headers=headers, auth=('12345', ''))
    
    print(response.status_code)
    print(response.text)

    If I try with any other instance such as Calendar, it works just fine... But Club fails...

    Could it be a bug?

  8. Hi there,

    In Clubs I want to manually change some parameters such as zoom and default lat/long as well as styling, but I can't seem to be able to find the javascript variable that apparently initializes the Google Map in the frontend?

    map.setZoom(8);
    map.setCenter({lat: 51.509865, lng: -0.118092});

    map() doesn't seem to be...

×
×
  • Create New...