We have moved to a new Sailfish OS Forum. Please start new discussions there.
4

Snapchat login temporarly failed

Tracked by Jolla

asked 2017-03-12 22:24:40 +0300

Egons123 gravatar image

updated 2017-03-12 22:44:16 +0300

ced117 gravatar image

Hi there!

I recently downloaded snapchat and wanted to try it out on sailfish but when I try to login it say's "Oh no your login temporarily failed, so please try again later " I wanted to resolve this issue

edit retag flag offensive close delete

Comments

If I understand this correctly, Snapchat is doing some checks whether your device is rooted or you used third-party apps etc. and this check fails on SFOS for some reason, leaving you with an error message that tells you absolutely nothing. I don't think there is a known workaround.

pisarz1958 ( 2017-03-15 00:24:42 +0300 )edit

Has anyone tried using rootcloak for this?

mwilson2367 ( 2017-03-18 02:17:28 +0300 )edit

I don't think rootcloak works with Snapchat, as Xposed Framework presence is being checked by Snapchat as well. We could try installing Snapchat in an Android VM/non-rooted device, log in and move the config (tokens etc.) to Jolla with Titanium Backup.

pisarz1958 ( 2017-03-19 16:22:47 +0300 )edit

4 Answers

Sort by » oldest newest most voted
4

answered 2017-06-03 01:12:05 +0300

pisarz1958 gravatar image

I doubt it's SafetyNet, the VMs I used today never passed it. It must be some other check, it's not about su binary either, I'm pretty clueless right now. Anyway, I came up with something today. This is not a solution everyone will like, but some terminal voodoo let me run Snapchat on my phone. This might be useful to someone.

First of all, I installed Snapchat on an Android VM. Here is catch, not every single one would work. Installing Android x86 on VirtualBox - no go, same error. Andy failed me miserably. Both Bluestacks and Remix OS Player did work, I used the latter because well, Bluestacks is a bloated piece of crap.

Here is a catch though. We can't root Jolla C/AquaFish for now, which means no Titanium Backup. Sad. You should be able to do the backup part using it though. I went with the old fashioned way. Remember to enable developer mode if you're going down this road. After logging in to Snapchat, backup your credentials this way:

Backup:

  1. Open terminal

  2. su

  3. cd /data/data

  4. tar -cvf /sdcard/snapchat.tar com.snapchat.android

Remix OS image came with super outdated tar, you might come across an issue with filenames longer than 100 bytes. If this happens, not all the files will be packaged, so you have to manually remove/rename files to avoid that. I assume using Titanium Backup or something instead should suffice too.

Now you need your backup transferred to your Jolla. I used this:

  1. adb pull /sdcard/snapchat.tar && scp snapchat.tar nemo@192.168.0.1:~

For adb to work you need to enable developer mode. Also make sure ssh is enabled on your Jolla and you have your password handy.

Restore:

  1. ssh into your Jolla, run devel-su and cd to /opt/alien/data/data

  2. ls -la | grep com.snapchat.android // note the username. I had perms problem the first time I tried that and failed.

  3. tar -xvf /home/nemo/snapchat.tar

  4. chown -R 10064:10064 com.snapchat.android // replace 10064 with username you got from ls command

If you made any changes during backup, reset them.

Now you should be able to open Snapchat on your phone (it's borderline unstable for me, but it does open, so that's something I guess).

Snapchat on Jolla

edit flag offensive delete publish link more

Comments

It works for me now for some reason. Here are a few more tips though:

  • Remix OS Player will hang when you su for some reason, so use Tar. Using Bluestacks+Titanium or another phone+Titanium is also a valid way, but you still need to untar and chown the hell out of that backup on your Jolla manually.

updated instructions:

  • su # works fine from adb

  • mv /data/data/com.snapchat.android/files /data/data/snapfiles # because files from ./files have too long filenames

  • cd /data/data/com.snapchat.android

  • tar -cvf /sdcard/snapchat.tar .

  • mv /data/data/snapfiles /data/data/com.snapchat.android/files

adb pull, scp, untar and chown remain mostly the same but you need to change paths a bit

pisarz1958 ( 2017-06-06 10:46:51 +0300 )edit
1

It's work but I will just add some informations:

  • You need to install and run one time Snapchat on the Jolla.
  • You don't need the directory "files" from the vm.
  • You need to keep the "lib" from the Jolla.

Also I have lot of problem with adb and scp with Remix Os Player. So I just send me the tar by email.

francisbbelisle ( 2017-10-07 02:03:38 +0300 )edit
1

I'm glad to hear that my "guide" worked for you. You should be able to pull the file over adb from the VM after rebooting it though. Yes, just having Snapchat installed and ran for the first time, you probably already have "files" on your phone, and "lib" is just a symlink to /opt/alien/data/app-lib/com.snapchat.android-1. I never had to do anything to make sure files on my phone are not replaced, as tar treats the VM file as symlink as well.

pisarz1958 ( 2017-10-07 15:55:37 +0300 )edit
2

This worked like a charm for me. Didn't need remix though, I just logged into snapchat on an android phone, it wouldn't let me ls in /data/data, but booted into twrp recovery and followed the instructions. Then transferred the snapchat.tar via usb to xperia x.

hagiz ( 2017-11-08 11:21:14 +0300 )edit

Great! I used Remix simply because I have no Android device and I noticed that most emulators are either really bad, or can't run snapchat (same issue as on SFOS), or both. Basically any Android device you could extract these files from (rooted?) will work.

pisarz1958 ( 2017-11-09 23:47:40 +0300 )edit
0

answered 2017-03-19 16:53:05 +0300

pisarz1958 gravatar image

SafetyNet check fails on my AquaFish, not sure what causes this (maybe Android 5.x with 4.4.4 API level is suspicious? no clue), but there are quite a lot of apps which use that API, including Snapchat. Can someone check that as well to make sure it's not an isolated feature. I did a lot of weird things to my AlienDalvik files.

image description

edit flag offensive delete publish link more

Comments

2

it's the same as with Pokemon Go, see the last pages of this thread:

http://talk.maemo.org/showthread.php?t=96930

I fear SailfishOS will never pass Safetynet

balta ( 2017-03-19 17:51:36 +0300 )edit
0

answered 2017-04-06 01:37:22 +0300

M1CK431 gravatar image

Hi,

Same issue here. Now I'm using "Casper" (android app) as an alternative client. It's not perfect and some features are missing but you can at least view/download snaps and manage your friends (add, delete, block...) so it can be a good workaround. You can find more information about Casper (and official APK) here: https://casper.io/

I have also found another alternative but not tried: https://github.com/fisch0920/snapchat

Hope this can help...

Regards,

edit flag offensive delete publish link more

Comments

1

This issue faced by many Android and iPhone users, the main problem which causes you can not sign in on Snapchat is that you are likely running on the rooted device, and Snapchat is decline root user, yet there are many other causes for that you fix login temporarily failed on Snapchat. Check out here that other causes and fixes.

Brad Pitt ( 2017-11-21 14:27:57 +0300 )edit
0

answered 2018-02-08 15:40:30 +0300

Malinux gravatar image

updated 2018-02-08 15:41:54 +0300

I had this issue too, until today. I am not sure exactly why it started to work. I didn't follow pisarz1958 sollution

The things I have done since my last login attempt is:

  1. Emptied cache and data
  2. Upgraded my Intex Aquafish from 2.1.2 to 2.1.3
  3. Tried to login as normal, got a message about "wrong username or password" and NOT the usual "Login temporarly failed"
  4. Retested the password and choosed to use the phone t a new password via SMS
  5. Logged in normally. Had to hit accept on new conditions

Not tested:

  1. Send snap
  2. upgrade to latest version of snapchat

Don't know for how long this will work or if it works after upgrading to latest snapchat version.

edit flag offensive delete publish link more

Comments

We can see here the way to hack snapchat online that we are all needing here.

snapch23 ( 2018-04-13 06:57:21 +0300 )edit
Login/Signup to Answer

Question tools

Follow
3 followers

Stats

Asked: 2017-03-12 22:24:40 +0300

Seen: 3,588 times

Last updated: Feb 08 '18