gigya

Gigya Swift framework missing ios-framework-build.sh script

走远了吗. 提交于 2021-01-28 05:28:21
问题 My question is very simple, is anyone using Gigya Swift SDK Framework 1.0.11 noticed the missing file needed for the Run Script Build phase? How did you cope with that? Basically that's the file needed in the Run Script Build Phase, invoked this way: bash "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Gigya.framework/ios-framework-build.sh" Gigya Thanks anyone providing an answer! 回答1: This is a normal script to removes unused architectures. You can take it from the old version and put in

Android proguard enable with gigya sdk

旧城冷巷雨未停 提交于 2020-01-03 04:10:30
问题 I am facing issue related to gigya login popup dailog. When I am enabling proguard as making "minifyEnabled true" login popup is not showing.I have checked response.I am getting below mentioned response. { "errorMessage": "Permission denied", "errorDetails": "Invalid namespace 'socialize' or method 'getUserInfo' or you do not have the required permissions to call it. ", "statusCode": 403, "errorCode": 403007, "statusReason": "Forbidden", "callId": "a8f696d6af194433a826893ea0c60b02", "time":

in Gigya, Unable to set attribute in “email” of Screen “Forget Password” in Screen-sets ID “Default-LinkAccounts”

99封情书 提交于 2019-12-11 17:20:02
问题 I have the following js implemented in Gigya JavaScript Parameters: onAfterScreenLoad: function(event) { if ((ell = document.querySelector("#gigya-forgot-password-screen input[type=text][name=loginID]")) != null){ ell.setAttribute('type', 'email'); ell.setAttribute('placeholder', 'user@example.com'); ell.setAttribute('autocomplete', 'off'); } }, I am able to use the above code to handle the fields of all other screen-sets EXCEPT this "Forget Password" screen (i.e. Screen ID: gigya-forgot

Gigya facebook login: completion handler not called

只谈情不闲聊 提交于 2019-12-11 04:46:11
问题 I´m trying to use Gigya-SDK to login in the app via facebook. The setup up on Facebook looks good and the native facebbook login without Gigya works fine. But when I call the Gigya method the completion handler after the successful login on the Facebook- Website is never be called. Here is my very simple code: [Gigya showLoginProvidersDialogOver:self providers:providers parameters:nil completionHandler:^(GSUser *user, NSError *error) { if (!error) { NSLog(@"works"); } else { NSLog(@"Error: %@

Gigya websites throw an error: Received message of type object from (domain), expected a string - all.js:56

倾然丶 夕夏残阳落幕 提交于 2019-12-11 03:53:34
问题 I have just noticed that all my websites using Gigya throw the following console log message for Facebook: Received message of type object from (domain), expected a string - all.js:56 Does anyone know why this message occurs or how to fix this? Just noticed its something to do with the facebook-send button. If I remove that it is fine. 回答1: My friend had the same problem with you. We disabled a chrome extension named "FVD Downloader" and the message just disappeared. So try to remove/disable

Constructing and validating a Gigya signature

狂风中的少年 提交于 2019-12-03 02:54:50
I wrote a method to verify a gigya signature against a specified timestamp and UID, based on Gigya's instructions for constructing a signature . Here is Gigya's psuedo code for doing that: string constructSignature(string timestamp, string UID, string secretKey) { // Construct a "base string" for signing baseString = timestamp + "_" + UID; // Convert the base string into a binary array binaryBaseString = ConvertUTF8ToBytes(baseString); // Convert secretKey from BASE64 to a binary array binaryKey = ConvertFromBase64ToBytes(secretKey); // Use the HMAC-SHA1 algorithm to calculate the signature