From breaking news and entertainment to sports and politics, get the full story with all the live commentary.
Return Tweets that matches your search criteria. See the docs here
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
Return Tweets that matches your search criteria. See the docs here
Add a member to a list. The authenticated user must own the list to be able to add members to it. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twitter: {
type: "app",
app: "twitter",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twitter.com/1.1/account/verify_credentials.json`,
}, {
token: {
key: this.twitter.$auth.oauth_access_token,
secret: this.twitter.$auth.oauth_refresh_token,
},
oauthSignerUri: this.twitter.$auth.oauth_signer_uri,
})
},
})
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}