Bitcoin Forum
April 20, 2024, 01:55:52 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 [192] 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 ... 272 »
  Print  
Author Topic: SatoshiDICE.com - The World's Most Popular Bitcoin Game  (Read 495448 times)
tarantoga
Member
**
Offline Offline

Activity: 103
Merit: 10


View Profile
May 01, 2016, 10:09:22 PM
 #3821

Hi im a old investor. i have my secret URL i also have my password. but i cannot get your system to send me a login via email, can you please advise. i have tried email i get no response.  thank you for your time.

Their e-mail server seems to ignore certain domain names. I had problems with new a rather new top level domain, for instance.
Satoshidice should fix this -- but you can try a different e-mail address in the meantime.

A simple one like foobar123@gmail.com or xyz@aol.com should definitely work.
I can confirm that .com and .net works. New TLDs don't. They probably have code somewhere that validates e-mail addresses too strictly.
1713578152
Hero Member
*
Offline Offline

Posts: 1713578152

View Profile Personal Message (Offline)

Ignore
1713578152
Reply with quote  #2

1713578152
Report to moderator
1713578152
Hero Member
*
Offline Offline

Posts: 1713578152

View Profile Personal Message (Offline)

Ignore
1713578152
Reply with quote  #2

1713578152
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 02, 2016, 02:51:56 AM
 #3822

Hi,

The API work?

Sorry my english, my first language is Spanish.

nygaar
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
May 02, 2016, 10:01:55 AM
 #3823

Hi,

The API work?

Sorry my english, my first language is Spanish.



there is a new API, but much the same as before, they say it will be a complete documentation soon.
marthas
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
May 02, 2016, 01:22:08 PM
 #3824

Hi,

The API work?

Sorry my english, my first language is Spanish.



there is a new API, but much the same as before, they say it will be a complete documentation soon.

One wonders when the new documentation is released.
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 02, 2016, 01:25:28 PM
 #3825

Hi,

The API work?

Sorry my english, my first language is Spanish.



Yes and we have made updates to the API documentation. Please let us know if you have any problems using it.
Randian Hero
Sr. Member
****
Offline Offline

Activity: 439
Merit: 250



View Profile
May 02, 2016, 01:27:48 PM
 #3826

Hi im a old investor. i have my secret URL i also have my password. but i cannot get your system to send me a login via email, can you please advise. i have tried email i get no response.  thank you for your time.

Their e-mail server seems to ignore certain domain names. I had problems with new a rather new top level domain, for instance.
Satoshidice should fix this -- but you can try a different e-mail address in the meantime.

A simple one like foobar123@gmail.com or xyz@aol.com should definitely work.
I can confirm that .com and .net works. New TLDs don't. They probably have code somewhere that validates e-mail addresses too strictly.

I actually tested it with one new TLD successfully. What happens when you do it? You never receive an email? it claims the address is invalid before you even can sign up?
rmalvarez
Newbie
*
Offline Offline

Activity: 55
Merit: 0



View Profile WWW
May 02, 2016, 01:58:46 PM
Last edit: May 02, 2016, 02:11:18 PM by rmalvarez
 #3827

Hi,

The API work?

Sorry my english, my first language is Spanish.



Yes and we have made updates to the API documentation. Please let us know if you have any problems using it.

Hi,

I have two accounts ...@... and ...@... in both accounts I logged in web interface without problems but the api not work

The response I get is

=============================================================================
HTTP/1.1 100 Continue

HTTP/1.1 200 OK
Date: Mon, 02 May 2016 13:50:33 GMT
Server: SatoshiDICE Webserver
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
access-control-allow-origin: https://www.satoshidice.com
Access-Control-Allow-Credentials: true
Content-Length: 58
Content-Type: application/json

{
    "message": "Password is wrong.",
    "status": "1"
}
=============================================================================

For more information here I hit the PHP code I'm using

=============================================================================
Code:
  $url = "https://session.satoshidice.com/userapi/login.php";
 
  $postdata = NULL;
  $postdata = array();
  $postdata['email'] = $config['satoshi_email'];
  $postdata['password'] = $config['satoshi_pass'];
 

  $curl_header = NULL;
  $curl_header = array();
  $curl_header[] = "User-Agent: SOME TEXT ".$version;
  $curl_header[] = "Content-Type: application/x-www-form-urlencoded";

  $curl = curl_init();
  curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($curl,CURLOPT_HEADER,1);
  curl_setopt($curl,CURLOPT_HTTPHEADER,$curl_header);
  curl_setopt($curl,CURLOPT_URL,$url);
  curl_setopt($curl,CURLOPT_BINARYTRANSFER,true);
  curl_setopt($curl,CURLOPT_POST,true);
  curl_setopt($curl,CURLOPT_POSTFIELDS,$postdata);
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
  curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);
  curl_setopt($curl,CURLOPT_TIMEOUT,122);
  if(isset($config['proxy']) && (strlen($config['proxy'])>0)) curl_setopt($curl,CURLOPT_PROXY,$config['proxy']);
  $response = curl_exec($curl);
 
  $response_header_size = curl_getinfo($curl,CURLINFO_HEADER_SIZE);
  $header = substr($response,0,$response_header_size);
  $body = substr($response,$response_header_size);
  curl_close($curl);

=============================================================================



Thank You.
Helix61be
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
May 02, 2016, 02:02:05 PM
 #3828

Randian could you get Back to me in my pm or email please, i got all the information in detail to get a password reset so it shouldnt Be hard.
marthas
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
May 02, 2016, 06:09:59 PM
 #3829

Hi,

The API work?

Sorry my english, my first language is Spanish.



Yes and we have made updates to the API documentation. Please let us know if you have any problems using it.

Nice! thanks for that!
BitMaxz
Legendary
*
Online Online

Activity: 3234
Merit: 2941


Block halving is coming.


View Profile WWW
May 02, 2016, 06:25:05 PM
 #3830

Hi,

The API work?

Sorry my english, my first language is Spanish.



Yes and we have made updates to the API documentation. Please let us know if you have any problems using it.
Good to know that they are sharing an api.. very useful to me for reference for other api.. this api can use when you are making own gambling site.. and i hope i can make my own jorney making own dice game..

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Helix61be
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
May 03, 2016, 08:44:39 AM
 #3831

Did anyone of the bigger investors got Help or an answer the past 3 weeks?
hughsjack
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
May 03, 2016, 01:47:55 PM
 #3832

Did anyone of the bigger investors got Help or an answer the past 3 weeks?

is not an investor but I atleast had help with my problem, hoping that things will be alright the investors, and that they stay with satoshidice.
Marcuson
Newbie
*
Offline Offline

Activity: 63
Merit: 0


View Profile
May 03, 2016, 04:24:58 PM
 #3833

Do the signature campaign already. You guys need some good publicity.
lite
Legendary
*
Offline Offline

Activity: 1400
Merit: 1009


View Profile
May 03, 2016, 06:00:26 PM
 #3834

Do the signature campaign already. You guys need some good publicity.
I think there will be no signature campaign from sd, i don't know why they told us they'll start a signature campaign. maybe they're happy with bct ad.
gberns
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
May 03, 2016, 10:43:02 PM
 #3835

I think they wrote in this thread that they'd run a signature campaign.
VarietyBitcoin
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
May 04, 2016, 05:05:30 AM
 #3836

satoshidice are scammers they have all my coin
npredtorch
Legendary
*
Offline Offline

Activity: 1246
Merit: 1049



View Profile
May 04, 2016, 05:52:18 AM
 #3837

satoshidice are scammers they have all my coin

Post it here Scam Accusations and don't forget to support your accusation with a valid proof.
jorgens
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
May 04, 2016, 08:58:46 AM
 #3838

satoshidice are scammers they have all my coin

Post it here Scam Accusations and don't forget to support your accusation with a valid proof.

yes it's easy to accuse a site to be a scam if you do not have proof. that thread is good to check out.
BigMac
Legendary
*
Offline Offline

Activity: 896
Merit: 1000



View Profile
May 04, 2016, 11:14:49 AM
 #3839

satoshidice are scammers they have all my coin

Any more details on that? Are you not getting your bitcoin in your account after a deposit? Are you not getting your bitcoin from a withdrawal? Do you lose bitcoin on the site? If so, have you verified your bets?

Helix61be
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
May 04, 2016, 12:01:24 PM
Last edit: May 04, 2016, 05:13:14 PM by Helix61be
 #3840

satoshidice are scammers they have all my coin

Any more details on that? Are you not getting your bitcoin in your account after a deposit? Are you not getting your bitcoin from a withdrawal? Do you lose bitcoin on the site? If so, have you verified your bets?
From what i gathered he couldnt acces his account, in the End Satoshidice Said that there was activity in his account wich would mean that he is not the owner,
If i remember correct he couldnt verify his account because he used a vpn.

Shitty situation for sure
Pages: « 1 ... 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 [192] 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 ... 272 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!