Jump to content

Guy Shimon

Clients
  • Posts

    15
  • 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 Guy Shimon

  1. 47 minutes ago, Marc Stridgen said:

    You would need 3rd party development in order to send all that data to email. We can provide you with mysql backups of your site along with files, but to convert posts to email would be development work

    thanks, Marc. 

    yes, I meant getting a mysql file. who do I need to speak with in order to get it?

  2. 44 minutes ago, Charles said:

    We made a bulletin in your community AdminCP, on our site, and our status page several days ago. Be sure to keep an eye on your AdminCP or subscribe to our status page to get email updates.

    No bulletin on my panel. Also, please consider sending an email as well. This caught some of us by complete surprise. 

  3. I got a few 😀 first it was 401(unauthorized), then after fiddling with the parameters it was 429 (Client Error: Too Many Requests), and now it's :

    requests.exceptions.ConnectionError: HTTPSConnectionPool(host='mywebsite', port=443): Max retries exceeded with url: /api/forums/forums (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x00000265DE369C40>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))

    8 minutes ago, Daniel F said:

    What was the response? Did you get any error?

    I got a few 😀 first it was 401(unauthorized), then after fiddling with the parameters it was 429 (Client Error: Too Many Requests), and now it's :

    requests.exceptions.ConnectionError: HTTPSConnectionPool(host='mywebsite', port=443): Max retries exceeded with url: /api/forums/forums (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x00000265DE369C40>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))

  4. Hi all,

    I just read the API documentation, I only saw mentions of PHP. Did anyone managed to pull it with Python? I tried this. What am I missing?

    import os
    import json
    import requests
    
    API_KEY = "api_key"
    ENDPOINT = "https://www.myforum.com"
    
    headers = {
        'Authorization': 'Basic ' + API_KEY
    }
    
    response = requests.get(url=f"{ENDPOINT}/api/forums/forums", headers=headers)
    response.raise_for_status()
    print(response.text)

     

  5. On 10/19/2020 at 5:32 PM, bfarber said:

    You can find various user statistics in the AdminCP under the Stats tab.

    What kind of usage on the storage package are you after? Are you a Community In The Cloud customer, or are you looking to see how much filesystem usage your attachments are consuming? I'd need a little more information to answer that question.

    Yes I'm a community in the cloud customer. I would like to be hands-on on storage usage

×
×
  • Create New...