Giter Club home page Giter Club logo

Comments (5)

johndpope avatar johndpope commented on May 29, 2024

@GRSouza - can you confirm this repo is working for you with the above anonyous token? (I'm on the candidate release branch)

from supabase-swift.

grdsdev avatar grdsdev commented on May 29, 2024

Hi @johndpope, I'm using the release-candidate branch on a side project, and is working fine.

From what I could see, your requests are responding correctly, can you check if you have all the RLS policies in place?

from supabase-swift.

johndpope avatar johndpope commented on May 29, 2024

the branch I'm on I get postgres response void -
the perplexing thing is -
this python code gives back correct results.
there's no RLS

import time
import csv
import re
import json
import os
from supabase import create_client, Client



url='https://qfwzdkpmyzajmmvupgzy.supabase.co'
key='eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InFmd3pka3BteXpham1tdnVwZ3p5Iiwicm9sZSI6ImFub24iLCJpYXQiOjE2NjgxMzAzMjYsImV4cCI6MTk4MzcwNjMyNn0.kEweOMrRSJ0mtOIXnsRmbNxf4yqoZAZf398jlGgSxtQ'

supabase = create_client(url, key)


if __name__ == "__main__":
    selectResult = supabase.table("tweets").select("*").execute()
    print("selectResult:",selectResult)

from supabase-swift.

grdsdev avatar grdsdev commented on May 29, 2024

Oh, I see it, you actually need to get the value of the response on Swift.

The execute method returns a PostgrestResponse type, you need to access its value.

let tweets: [Tweet] = try await self.client.database.from("tweets").select(columns: "*").execute().value

from supabase-swift.

johndpope avatar johndpope commented on May 29, 2024

thanks

from supabase-swift.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.