Questions tagged [snapchat]

Snapchat is a mobile photo messaging application. Use this tag for programming-specific questions regarding the usage of Snapchat, Snapchat's APIs, or Snap Kit development tools. Questions regarding general usage of the app or platform are off-topic.

Snapchat is a mobile photo messaging application which allows users to take photos, record videos, add text and drawings, and send content to a controlled list of recipients, with read receipts to indicate whether recipients have viewed messages.

Snapchat offers a set of development kits under a collective umbrella called Snap Kit. These include:

Questions using the tag should relate to the usage of Snapchat in a developmental or programmatic context, either through usage of Snap Kit, an API, or some other programming-specific context.

Do not use this tag for non-programming specific or general usage questions about Snapchat or its features, as these are not on-topic on Stack Overflow.

245 questions
2
votes
0 answers

How to send a message on snapchat using python 3?

My objective is to be able to send an automated message on snapchat. Is there a way to send a message on snapchat using python similarly to sending an email using python and SMTP? Many thanks
user14027707
2
votes
3 answers

Could not find com.snapchat.kit.sdk:core:1.6.5

Trying to integrate Snapchats login SDK. I've followed the instructions here: https://docs.snapchat.com/docs/login-kit-android So I've added the maven repository: repositories { maven { url…
Thomas Cook
  • 4,371
  • 2
  • 25
  • 42
2
votes
1 answer

Send Text and Link to Snapchat from my Swift app without the SDK

I am integrating sharing options from my app to Snapchat. I have a dynamic URL obtained in an object and clicking the Snapchat's share button directly opens the app if Snapchat is there on the device and show the text with the link. I am using the…
Yogesh Tandel
  • 1,738
  • 1
  • 19
  • 25
2
votes
0 answers

How to apply props/ mask(like snapchat) on face using real camera in swift?

I am working on a snapchat like app where user will be able to apply filters on his face or multiple faces. Minimum iOs support is iOS 12 , device support : iPhone 6 & above. Please let me know how to implement this.
SThakur
  • 262
  • 4
  • 16
2
votes
2 answers

Snapchat ads api - datetime & timezone for api calls results in failure due to timezone changes

I am working on Snapchat Ads API. (Writing a connector to a big query). currently I get metrics(performance stats) at day's granularity. I pass the following as query parameters to the request URL. the accounts time zone: America/Los_Angeles I use…
jarvis
  • 157
  • 1
  • 13
2
votes
0 answers

intents on the Snapchat browser on Android?

I'm trying to create a link within the Android SnapChat browser that will launch in Google Chrome. I have this code from What is the intent to launch any website link in Google Chrome:
GeneralBear
  • 1,011
  • 3
  • 11
  • 35
2
votes
2 answers

Is there a way to get a users Bitmoji using Access tokens from Snapkit login web api?

I am attempting to use the snapkit login web api for a hybrid application. I have successfully been able to intercept the access token in the redirectURL. I was wondering if there was a way to get the users Bitmoji using this access_token and either…
2
votes
0 answers

Create a camera like SnapChat or Instagram from scratch (Android)

I would like to create a camera with all the features like the SnapChat's one or instagram's one from scratch in Android-studio. I searched online, but I didn't found anything useful. Can you suggest me how to do it?
user3476509
  • 171
  • 10
2
votes
0 answers

Integrating SnapKit with AWS Cognito - which standards does SK support?

I'm trying to integrate SnapKit Login in my iOS app, and I'm using AWS as my backend - so I want to use Cognito. Cognito User Pools can integrate third party login providers if they support OpenID Connect or SAML. I can't find any documentation if…
Yariv Adam
  • 844
  • 9
  • 24
2
votes
1 answer

Snapchat SnapKit Login on iOS 'fetchUserDataWithQuery' always fails with SCOAuth2ClientErrorDomain 403

I'm trying out Snpachat's SnapKit login api, and I've setup my project as described in the documentation/guide. I've allowed the use of all the scopes, i.e. external id, display name and bitmoji in the dashboard and added the required fields in the…
2
votes
1 answer

Snapchat-like Viewpager Animation

I'm trying to create an animation just like the Snapchat Viewpager, where the background of the left and right fragments are faded in but the contents are sliding in. All these happens while the camera fragment (centre fragment) stays static. It's…
2
votes
0 answers

Google authentication for Snapchat publish: is it possible with Google Apps Script?

I would like to download some data from Snapchat publisher dashboard using GAS. The problem I have is that the page can only be accessed after Google authentication (OAuth2?) and thus cannot be done using the HTTP request scripts I saw on SO. The…
2
votes
0 answers

JavaSnap login issues

I can't seem to log in to Snapchat using the JavaSnap API, https://github.com/hatboysam/JavaSnap, even when I provide the correct login information. The code I used: Snapchat sc = Snapchat.login(usernameLogin.getText(), passwordLogin.getText()); if…
Gamer818
  • 102
  • 11
2
votes
1 answer

How can I extract an edge like with Snapchat's scissor tool?

In Shapchat's photo editor, there is a scissor tool extract object with guiding lines (by drawing edges of object want to extract). I wanted to implement that tool with openCV, but I am totally new to openCV. I searched openCV documents and…
Paul
  • 759
  • 2
  • 7
  • 20
2
votes
3 answers

How to share image/video on SnapChat from my iOS app?

I have used below code to open SnapChat and it only opens SnapChat from my app. NSURL *appSnapChatURL = [NSURL URLWithString:@"snapchat://app"]; if([[UIApplication sharedApplication] canOpenURL:appSnapChatURL]) { [[UIApplication…
Asif Raza
  • 836
  • 12
  • 29